fork download
  1. <?php
  2. for ($x = 1; $x < 10; $x++) {
  3. echo "x = $x\n";
  4. }
  5. // your code goes here
  6. ?>
Success #stdin #stdout 0s 82560KB
stdin
Standard input is empty
stdout
x = 1
x = 2
x = 3
x = 4
x = 5
x = 6
x = 7
x = 8
x = 9