我很想了解运算符语法。我知道它被称为对象运算符,我可以看到它是如何使用的(在 PHP 中我们在哪里使用对象运算符“->”?)。
我试图了解当它们像在这个片段中那样串在一起时的目的是什么(例如“switch($this->request->param('id')):
这是来自使用 Kohana 的网站的一段代码:
public function action_list()
{
$connections = ORM::factory('Connection')
->with('property')
->with('inviter');
switch ($this->request->param('id')) {
// more code...
}
}