说我们有
function foo() {
bar();
echo "hello stackoverflow, this is my first question, you helped me so many times, I can't even count it, you are great! <3";
}
function bar() {
return;
}
foo();
我知道这很不礼貌,但是是否可以让bar()
返回一个类似return return;
的“返回命令”来告诉foo()
立即返回?我知道如果您在foo()
中设置了特定的返回值,则可以通过在bar()
中进行检查来做到这一点,但是是否有可能没有某种方式呢?
答案 0 :(得分:1)