>>241
こんなんでどうでしょうか

class hoge {
public $result;

public function foo() {
$this->result = array('aaa', 'bbb');
return $this;
}
}
$obj = new hoge();
echo $obj->foo()->result[0];