for loop php continue to next item code example
Example: 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
*/