fork download
  1. <?php
  2.  
  3. $x = 0;
  4. $y =& $x;
  5. $x++;
  6. echo $y;
Success #stdin #stdout 0.02s 24400KB
stdin
Standard input is empty
stdout
1