class MyClass {
  var $lambda;
  function __construct() {
    $this->lambda = function() {echo 'hello world';};
    // no errors here, so I assume that this is legal
  }
}

$myInstance = new MyClass();
$myInstance->lambda();
//Fatal error: Call to undefined method MyClass::lambda()

So what is the correct syntax for reaching class variables ?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 17 down vote accepted

In PHP, methods and properties are in a separate namespace (you can have a method and a property with the same name), and whether you are accessing a property or a method depends of the syntax you are using to do so.

$expr->something() is a method call, so PHP will search for a method in the class.

$expr->something is a property fetch, so PHP will search for a property in the class.

$myInstance->lambda(); is parsed as a method call, so PHP searches for a method named lambda in your class, but there is no such method (hence the Call to undefined method error).

So you have to use the fetch property syntax to fetch the lambda, and then call it.

  • You can do this with ->lambda->__invoke():

    $myInstance = new MyClass();
    $myInstance->lambda->__invoke();
    
  • Or assign it to a local variable:

    $lambda = $myInstance->lambda;
    $lambda();
    
  • Or call it using call_user_func:

    call_user_func($myInstance->lambda);
    
  • Alternatively, if this is a common pattern in your class, you can setup a __call method to forward calls to your lambda:

    class MyClass {
      private $lambda;
      function __construct() {
        $this->lambda = function() {echo 'hello world';};
      }
      function __call($name, $args) {
        return call_user_func_array($this->$name, $args);
      }
    }
    

    Now this works:

    $myInstance = new MyClass();
    $myInstance->lambda();
    
link|improve this answer
3  
Pretty perfect explanation =) – Rudie Aug 15 '11 at 22:46
Nice, although it would be nice to see __invoke/() vs. call_user_func notes. – pst Jan 15 at 22:37
Very good explanation! Very rich in examples. – Ricardo Jan 22 at 4:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.