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
*/
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
*/
Difference between break and continue in PHP?
break ends a loop completely, continue just shortcuts the current iteration and moves on to the next iteration.
while ($foo) { <--------------------┐
continue; --- goes back here --┘
break; ----- jumps here ----┐
} |
<--------------------┘
This would be used like so:
while ($droid = searchDroids()) {
if ($droid != $theDroidYoureLookingFor) {
continue; // ..the search with the next droid
}
$foundDroidYoureLookingFor = true;
break; // ..off the search
}
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us