fork(1031) download
  1. <?php
  2.  
  3. for ($x = 1; $x < 10; $x++) {
  4. echo "x = $x\n";
  5. }
  6.  
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
x = 1
x = 2
x = 3
x = 4
x = 5
x = 6
x = 7
x = 8
x = 9