fork download
  1. <?php
  2.  
  3. function my(&$var){
  4. $var++;
  5. }
  6.  
  7. $a = 0;
  8. my($a);
  9. echo $a;
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
1