fork download
  1. <?php
  2.  
  3. function zz($x)
  4. {
  5. $x=$x+5;
  6. }
  7.  
  8. $x=10;
  9. zz($x);
  10. echo $x;
  11.  
  12. ?>
Success #stdin #stdout 0.02s 13064KB
stdin
Standard input is empty
stdout
10