我想做这个。
$ppl->tech->ceo->apple();
我该怎么做呢?
例如:
class ppl {
public $tech;
public function __construct(){
$this->tech = new tech();
}
}
class tech {
public $ceo;
public function __construct(){
$this->ceo = new ceo();
}
}
class ceo {
public function __construct(){
}
public function apple(){
echo 'Hello.. I\'m apple.';
}
}
菊花链可以通过返回一个指向对象的指针来实现。它通常用于将方法连接在一起,例如:
$db = new db();
$myquery = $db->Select('mytable')->Where('a > 1')->Execute();
菊花链不是将属性与新类连接起来;
例子:
class db
{
public function Select( $table )
{
// do stuff
return $this;
}
public function Where( $Criterium )
{
// do stuff
return $this;
}
public function Execute()
{
// do real work, return a result
}
}