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
*/
php foreach continue
$basket = ['apples', 'bananas', 'broccoli', 'peaches', 'pears'];
foreach ($basket as $fruit) {
if ($fruit === 'broccoli') {
continue; // Skips 'broccoli' and moves onto 'peaches'
}
echo sprintf('I love %s!', $fruit);
}
// I love apples!
// I love bananas!
// I love peaches!
// I love pears!
php for next loop step
for ($i = 0; $i < 10; ++$i)
{
echo "I will loop 10 times";
}
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