fork download
  1. <?php
  2.  
  3. for($i=0; $i<10; $i++)
  4. {
  5. $n = rand(0, 1);
  6.  
  7. if($i != 0 && $i != 2)
  8. continue;
  9.  
  10. echo $i."= ".$n;
  11. echo "\n";
  12. }
  13. ?>
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
0= 0
2= 0