fork download
  1. <?php
  2. $arr = [1,2,3,4,5];
  3. foreach($arr as $key => $v) {
  4. if($key == 0) continue;
  5. echo $v;
  6. }
Success #stdin #stdout 0.01s 23492KB
stdin
Standard input is empty
stdout
2345