fork(2) download
  1. <?php
  2.  
  3. for ($i = 0; $i < 20; ++$i) {
  4. if ($i !== 0 && $i % 8 === 0) {
  5. print "break";
  6. }
  7.  
  8. print $i;
  9. }
Success #stdin #stdout 0s 82560KB
stdin
Standard input is empty
stdout
01234567break89101112131415break16171819