gpt4 book ai didi

php - 根据 IF 语句的结果重新开始函数

转载 作者:行者123 更新时间:2023-12-04 15:57:37 25 4
gpt4 key购买 nike

如果我有一个类内部的函数,并且返回“无效”,我该如何从顶部函数重新开始?

function test(){

//curl here

//other stuff here

if(strpos($data, 'invalid')){
print "invalid";
//discard and remove
continue ;
}

}

但我得到以下错误

Fatal error: Cannot break/continue 1 level in

如果我遇到“无效”,我想重新开始test()..

最佳答案

你可能想在这里使用递归函数:

function test(){

//curl here

//other stuff here

if(strpos($data, 'invalid')){
print "invalid";
//discard and remove
return test() ; // restart process
}
}

或者,这可能是对 goto 的一次(非常罕见的)良好使用运算符(operator):

function test(){
start:
//curl here

//other stuff here

if(strpos($data, 'invalid')){
print "invalid";
//discard and remove
goto start;
}
}

请注意,这仅适用于 PHP >=5.3。

关于php - 根据 IF 语句的结果重新开始函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5413223/

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