fork(25) download
  1. <?php
  2. $i = 0;
  3. while ($i++ < 5) {
  4. if ($i == 3) break;
  5. echo $i . "\n";
  6. }
  7. ?>
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
1
2