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