fork download
  1. <?php
  2.  
  3. $x = 1;
  4. $p = $x++ + 2;
  5.  
  6. echo $x
  7.  
  8. ?>
Success #stdin #stdout 0.04s 25952KB
stdin
Standard input is empty
stdout
int(2)
2