fork download
  1. <?php
  2.  
  3. // your code goes here
  4.  
  5. function test($a) {
  6. echo $a . PHP_EOL;
  7. }
  8.  
  9. $t1 = test;
  10. $t1("AASTHWE");
Success #stdin #stdout #stderr 0s 82560KB
stdin
Standard input is empty
stdout
AASTHWE
stderr
PHP Notice:  Use of undefined constant test - assumed 'test' in /home/jjSeJF/prog.php on line 9