PHP7 के रूप में, आप कर सकते हैं
$obj = new StdClass;
$obj->fn = function($arg) { return "Hello $arg"; };
echo ($obj->fn)('World');
या बंद का उपयोग करें :: कॉल () , हालांकि यह एक पर काम नहीं करता है 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
अनंत लूप में।