Answers for "continue 1 loop for php"

PHP
5

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

Browse Popular Code Answers by Language