我正在测试像 js 一样编写 PHP 的方式,我想知道这是否可能。
如果说我在 C 类中有 A、B 功能。
Class C{
function A(){
}
function B(){
}
}
$D = new C;
$D->A()->B(); // <- Is this possible and how??
在 Js 中,我们可以简单地写like D.A().B();
return $this
我在里面试过function A()
,没用。
非常感谢您的建议。