fork download
  1. <?php
  2.  
  3. $foo = "3d8";
  4. print "$foo\n";
  5. $foo++;
  6. print "$foo\n";
  7. $foo++;
  8. print "$foo\n";
  9. $foo++;
  10. print "$foo\n";
  11.  
Success #stdin #stdout 0.03s 25624KB
stdin
Standard input is empty
stdout
3d8
3d9
3e0
4