gpt4 book ai didi

php - 嵌套循环,打破内循环并继续主循环

转载 作者:可可西里 更新时间:2023-11-01 12:29:37 25 4
gpt4 key购买 nike

我有以下循环,当内部循环内的检查满足条件时,我想继续 while 循环。我找到了解决方案 here (我在下面的示例中应用了它),但它适用于 c#

    $continue = false;
while($something) {

foreach($array as $value) {
if($ok) {
$continue = true;
break;
// continue the while loop
}

foreach($value as $val) {
if($ok) {
$continue = true;
break 2;
// continue the while loop
}
}
}

if($continue == true) {
continue;
}
}

当内部循环被break-ed out 时,PHP 是否有自己构建的方法来continue 主循环?

最佳答案

在阅读了这个问题的评论(被作者删除)并做了一些研究后,我发现 continue 也有参数 continue 中断。我们可以像这样向 continue 添加数字:

while($something) {

foreach($array as $value) {
if($ok) {
continue 2;
// continue the while loop
}

foreach($value as $val) {
if($ok) {
continue 3;
// continue the while loop
}
}
}
}

关于php - 嵌套循环,打破内循环并继续主循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32485581/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com