Declaring a Function with Arguments : Parameters : Functions PHP Source Code


PHP Source Code » Functions » Parameters »

 

Declaring a Function with Arguments




  <?php
  function printcheck ($sometext){
      print ("$sometext n");
  }
  printcheck ("A.");
  printcheck ("AA.");
  printcheck ("AAA!");
  ?>
           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Functions
» Parameters