php – 我即将使用goto语句

前端之家收集整理的这篇文章主要介绍了php – 我即将使用goto语句前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
救我脱离猛禽死亡 – 有没有更好的办法来处理这种结构?
while(condition) {
    $this->phase1();
    $this->phase2();
    $this->phase3();
    $this->phase4();
}

在这些方法之一中,可以满足条件.条件满足后,循环必须退出.如果我可以打电话; phase2()内;例如,我不需要一个goto语句(但是当然会抛出一个错误).

返回一个布尔值来执行每个阶段,直到成功.
while (condition) {
    if ($this->phase1() || $this->phase2() || $this->phase3() || $this->phase4()) {
        // Success!
    }
}
原文链接:https://www.f2er.com/php/139965.html

猜你在找的PHP相关文章