fork(21) download
  1. <?php
  2. $i = 1;
  3. do {
  4. echo $i."\n";
  5. $i++;
  6. } while ($i < 11);
  7. ?>
Success #stdin #stdout 0.01s 82560KB
stdin
Standard input is empty
stdout
1
2
3
4
5
6
7
8
9
10