fork download
  1. <?php
  2. $a= 1;
  3. echo $a;
  4. ++$a;
  5. echo $a;
  6.  
  7. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
12