Answers for "php for 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 skip loop

for ($i=0; $i <= 12; $i++) {
  if($1 == 5){
  	continue;
  }
  //code block
  
  //code block ends
}
Posted by: Guest on April-08-2021
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