我是OOP的初学者,但我无法回答任何相关的答案,我可能不会以正确的方式搜索,我希望做以下事情
$country->city()->get_citizens ();
基本思想是基于laravel如何进行查询,如
$query->select()->from ()
答案 0 :(得分:-1)
$query->select()
是一个返回具有from()
方法的对象实例的函数
示例:工作。
class query {
private $thing;
public function __construct() {
$this->thing = new thing();
}
public function select() {
return $this->thing;
}
}
class thing {
public function from() {
echo "Called from";
}
}
$query = new query();
$query->select()->from();