PHPでは、メソッドチェーンも使用できます。


簡単な説明:
 
<?php
class test {
private $_name = '';
public function setName($name)
{
$this->_name = $name;
return $this;
}
public function getName()
{
echo $this->_name . "
";
return $this;
}
}
$link = new test();
//
$link->setName('name1')->getName()->setName('name2')->getName()->setName('name3')->getName();
結果は以下の通りです。
 
name1
name2
name3