fork(1) download
  1. <?php
  2.  
  3. $i=0;
  4.  
  5. foreach(range(0, 10) as $n) {
  6.  
  7. if($i == 3){
  8. break;
  9. }
  10.  
  11. echo $n;
  12.  
  13. $i++;
  14. }
  15.  
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
012