fork download
  1. <?php
  2.  
  3. $i = 0;
  4.  
  5. while ($i<=10)
  6. {
  7. echo $i;
  8. $i++;
  9. }
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
012345678910