从 PHP7 开始,您可以
$obj = new StdClass;
$obj->fn = function($arg) { return "Hello $arg"; };
echo ($obj->fn)('World');
或者使用 Closure::call(),尽管这在 .StdClass
在 PHP7 之前,您必须实现 magic 方法来拦截调用并调用回调(这当然是不可能的,因为您无法添加该方法)__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