3
我有兩個類即foo的&酒吧PHP實現了ArrayAccess
class bar extends foo
{
public $element = null;
public function __construct()
{
}
}
和Foo類竟把
class foo implements ArrayAccess
{
private $data = [];
private $elementId = null;
public function __call($functionName, $arguments)
{
if ($this->elementId !== null) {
echo "Function $functionName called with arguments " . print_r($arguments, true);
}
return true;
}
public function __construct($id = null)
{
$this->elementId = $id;
}
public function offsetSet($offset, $value)
{
if (is_null($offset)) {
$this->data[] = $value;
} else {
$this->data[$offset] = $value;
}
}
public function offsetExists($offset)
{
return isset($this->data[$offset]);
}
public function offsetUnset($offset)
{
if ($this->offsetExists($offset)) {
unset($this->data[$offset]);
}
}
public function offsetGet($offset)
{
if (!$this->offsetExists($offset)) {
$this->$offset = new foo($offset);
}
}
}
我想,當我運行下面的代碼:
$a = new bar();
$a['saysomething']->sayHello('Hello Said!');
應該返回函數sayHello用參數調用Hello!來自foo的__call魔術方法的。
在這裏,我想說的是saysomething應$這個 - > elementId傳遞從Foo的__construct功能和的sayHello應被視爲方法和你好說應採取作爲參數 for sayHello函數將從__call魔法方法呈現。
此外,需要產業鏈的方法,如:
$a['saysomething']->sayHello('Hello Said!')->sayBye('Good Bye!');
非常有效!謝謝你@Jack! – Guns
@槍不用客氣;請注意'$ bar ['saidomething']'不會返回'bar'對象,而是'foo'對象。 –
謝謝!這工作得很好,但是,當我鏈方法不起作用。我正在嘗試'$ a ['saysomething'] - > sayHello ['Hello Said!] - > sayBye('Good Bye!');'。我如何實現這一目標? – Guns