fork download
  1. <?php
  2. $x = 12;
  3. $y = 12 + $x++;
  4. echo "y = $y x = $x";
  5. ?>
  6.  
Success #stdin #stdout 0.02s 25636KB
stdin
Standard input is empty
stdout
y = 24 x = 13