gpt4 book ai didi

php - 我将要使用 goto 语句

转载 作者:行者123 更新时间:2023-12-02 08:26:07 25 4
gpt4 key购买 nike

将我从猛禽死亡中拯救出来 - 有没有更好的方法来处理这种结构?

while(condition) {
$this->phase1();
$this->phase2();
$this->phase3();
$this->phase4();
}

通过其中任何一种方法,都可以满足条件。满足条件后立即,循环必须退出。例如,如果我可以在 phase2(); 内部调用 break;,我就不需要 goto 语句(但当然,这会引发错误)。

最佳答案

返回一个 bool 值来执行每个阶段,直到成功。

while (condition) {
if ($this->phase1() || $this->phase2() || $this->phase3() || $this->phase4()) {
// Success!
}
}

关于php - 我将要使用 goto 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7589131/

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