Calling anonymous functions defined as object vari

2019-04-10 06:57发布

This question already has an answer here:

I have php code like:

class Foo {
  public $anonFunction;
  public function __construct() {
    $this->anonFunction = function() {
      echo "called";
    }
  }
}

$foo = new Foo();
//First method
$bar = $foo->anonFunction();
$bar();
//Second method
call_user_func($foo->anonFunction);
//Third method that doesn't work
$foo->anonFunction();

Is there a way in php that I can use the third method to call anonymous functions defined as class properties?

thanks

1条回答
我想做一个坏孩纸
2楼-- · 2019-04-10 07:28

Not directly. $foo->anonFunction(); does not work because PHP will try to call the method on that object directly. It will not check if there is a property of the name storing a callable. You can intercept the method call though.

Add this to the class definition

  public function __call($method, $args) {
     if(isset($this->$method) && is_callable($this->$method)) {
         return call_user_func_array(
             $this->$method, 
             $args
         );
     }
  }

This technique is also explained in

查看更多
登录 后发表回答