-1

我想做这个。

$ppl->tech->ceo->apple();

我该怎么做呢?

4

2 回答 2

5

例如:

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.';
  }
}
于 2012-10-12T06:44:51.713 回答
2

菊花链可以通过返回一个指向对象的指针来实现。它通常用于将方法连接在一起,例如:

$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
  }
}
于 2012-10-12T07:27:00.617 回答