fork download
  1. <?php
  2.  
  3. function foo () { echo "hello\n"; }
  4.  
  5. $func = "foo";
  6. $func();
  7.  
  8. ?>
Success #stdin #stdout 0.03s 13112KB
stdin
Standard input is empty
stdout
hello