4

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

radalin
  • 560
  • 5
  • 13

1 Answers1

10

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

NikiC
  • 98,796
  • 35
  • 186
  • 223
Gordon
  • 305,248
  • 71
  • 524
  • 547