救我脱离猛禽死亡 – 有没有更好的办法来处理这种结构?
while(condition) { $this->phase1(); $this->phase2(); $this->phase3(); $this->phase4(); }
在这些方法之一中,可以满足条件.条件满足后,循环必须退出.如果我可以打电话; phase2()内;例如,我不需要一个goto语句(但是当然会抛出一个错误).
返回一个布尔值来执行每个阶段,直到成功.
原文链接:https://www.f2er.com/php/139965.htmlwhile (condition) { if ($this->phase1() || $this->phase2() || $this->phase3() || $this->phase4()) { // Success! } }