我不知道如何解释这个问题,所以可能瓷砖不匹配。
Class a {
function b{
return $this;
}
function c{
return $this;
}
}
如果我有这样的班级结构,我可以做到
$a = new a();
$a->b()->c();
我想知道我怎样才能知道函数没有像 一样继续$a->b();
,然后我返回 $retuslt 而不是 $this。
Class a {
function b{
//if not continued
return $result;
//if continued
return $this;
}
function c{
return $this;
}
}
这可能吗?非常感谢您!!