fork download
  1. <?php
  2. $i = 1;
  3. echo $i++;
  4. echo ++$i;
  5. // your code goes here
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
13