fork download
  1. <?php
  2. for($x=0;$x<10;$x++){
  3. echo $x*2 ."<br>";
  4. }
  5. ?>
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
0<br>2<br>4<br>6<br>8<br>10<br>12<br>14<br>16<br>18<br>