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
無限ループに。