fork download
  1. <?php
  2.  
  3. for ($x > 10; $x < 10; $x++) {
  4. echo "x = $x\n";
  5. }
Success #stdin #stdout #stderr 0.02s 24528KB
stdin
Standard input is empty
stdout
x = 
x = 1
x = 2
x = 3
x = 4
x = 5
x = 6
x = 7
x = 8
x = 9
stderr
PHP Notice:  Undefined variable: x in /home/PHvD6k/prog.php on line 3
PHP Notice:  Undefined variable: x in /home/PHvD6k/prog.php on line 3
PHP Notice:  Undefined variable: x in /home/PHvD6k/prog.php on line 4
PHP Notice:  Undefined variable: x in /home/PHvD6k/prog.php on line 3