fork download
  1. <?php
  2. $starttime = time();
  3.  
  4. $i = 1;
  5. while (time() - $starttime < 10) {
  6.  
  7. echo $i++ . "\n";
  8. sleep(1);
  9.  
  10. }
Success #stdin #stdout 0.02s 52472KB
stdin
Standard input is empty
stdout
1
2
3
4
5
6
7
8
9
10