fork download
  1. <?php
  2.  
  3.  
  4. for ($i = 0; $i <= 10; $i++) {
  5. $i = $i + $i;
  6. echo "$i \n";
  7. }
Success #stdin #stdout 0s 52488KB
stdin
Standard input is empty
stdout
0 
2 
6 
14