ใน PHP7 คุณสามารถทำได้
$obj = new StdClass;
$obj->fn = function($arg) { return "Hello $arg"; };
echo ($obj->fn)('World');
หรือใช้Closure :: call ()แม้ว่าจะใช้ไม่ได้กับไฟล์StdClass
.
ก่อน PHP7 คุณต้องใช้__call
เมธอดมายากลเพื่อดักฟังการโทรและเรียกใช้การโทรกลับ (ซึ่งเป็นไปไม่ได้StdClass
แน่นอนเพราะคุณไม่สามารถเพิ่ม__call
เมธอดได้)
class Foo
{
public function __call($method, $args)
{
if(is_callable(array($this, $method))) {
return call_user_func_array($this->$method, $args);
}
// else throw exception
}
}
$foo = new Foo;
$foo->cb = function($who) { return "Hello $who"; };
echo $foo->cb('World');
โปรดทราบว่าคุณไม่สามารถทำได้
return call_user_func_array(array($this, $method), $args);
ใน__call
ร่างกายเพราะสิ่งนี้จะทำให้เกิด__call
การวนซ้ำแบบไม่สิ้นสุด