php – 从一个开关”break’,然后在循环中’continue’

前端之家收集整理的这篇文章主要介绍了php – 从一个开关”break’,然后在循环中’continue’前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
是否有可能从开关断开然后继续循环?

例如:

$numbers= array(1,2,3,4,5,6,7,8,9,0);
$letters = array('a','b','c','d','e','f','g');

foreach($letters as $letter) {
    foreach($numbers as $number) {
        switch($letter) {
           case 'd':
               // So here I want to 'break;' out of the switch,'break;' out of the
               // $numbers loop,and then 'continue;' in the $letters loop.
               break;
        }
    }

    // Stuff that should be done if the 'letter' is not 'd'.

}

可以这样做,语法是什么?

你想使用 break n
break 2;

澄清后,看起来你想要continue 2;

原文链接:https://www.f2er.com/php/135934.html

猜你在找的PHP相关文章