Answers for "php foreach loop skip to next"

PHP
2

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
*/
Posted by: Guest on December-27-2020
0

php for next loop step

for ($i = 0; $i < 10; ++$i) 
{
  echo "I will loop 10 times";
}
Posted by: Guest on August-06-2020

Browse Popular Code Answers by Language