作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如果我有一个类内部的函数,并且返回“无效”,我该如何从顶部函数重新开始?
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/
我是一名优秀的程序员,十分优秀!