我需要一遍又一遍地重复一些指令,直到我调用的第三方API不再允许我在当前时间窗口执行它,然后跳转到代码的另一部分。这样做是不是一个好主意?
foreach ($elements as $element){
try {
//a call to an external API (using $element)
}
catch(Exception $e) {
goto next;
}
}
next:
//the remaining of my code
如果不是,我应该怎么做?
由于
答案 0 :(得分:2)
至少,我会用“break”替换“goto label”。