php continue loop code example
Example 1: for loop php continue to next item
$stack = array('first', 'second', 'third', 'fourth', 'fifth');
foreach($stack as $v){
if($v == 'second') {
continue;
}
echo $v.'<br>';
}
/*
first
third
fourth
fifth
*/
Example 2: php continue
<?php
for ($i = 0; $i < 5; ++$i) {
if ($i == 2)
continue
print "$i\n";
}
?>
Example 3: php for next loop step
for ($i = 0; $i < 10; ++$i)
{
echo "I will loop 10 times";
}