小编典典

PHP中break和continue之间的区别?

all

breakPHP和PHP有什么区别continue


阅读 57

收藏
2022-08-02

共1个答案

小编典典

break完全结束一个循环,continue只是缩短当前迭代并继续下一个迭代。

while ($foo) {   <--------------------┐
    continue;    --- goes back here --┘
    break;       ----- jumps here ----┐
}                                     |
                 <--------------------┘

这将像这样使用:

while ($droid = searchDroids()) {
    if ($droid != $theDroidYoureLookingFor) {
        continue; // ..the search with the next droid
    }

    $foundDroidYoureLookingFor = true;
    break; // ..off the search
}
2022-08-02