fork(1) download
  1. <?php
  2.  
  3. function f(&$x) {
  4. $x = 1;
  5. }
  6.  
  7. $x = 0;
  8. echo $x;
  9. f($x);
  10. echo $x;
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
01