标签: php fluent-interface
我确实想把函数调用到函数类中,比如laravel如何与oop php一起工作 例如:
App\Flight::where('active', 1)->orderBy('name', 'desc') ->take(10)->get();
这不可能吗?
答案 0 :(得分:0)
您的类方法需要返回$this,这样您就可以链接这样的调用。
$this
答案 1 :(得分:0)
您可以使用$ this-> functionName();