How and why use curly braces: return $this->{$this->action}();

前端 未结 2 1230
悲&欢浪女
悲&欢浪女 2021-01-23 01:29

so in first part i made 2 object, instantiate two classes (one we generate from createController function)

$loader = new Loader(); 
$controller = $loader->cre         


        
相关标签:
2条回答
  • 2021-01-23 01:47
    $this->{$this->action}();
    

    means that the method that should be called comes from the property $this->action.

    $this->action = 'func1';
    $this->{$this->action}();
    

    is equivalent to:

    $this->func1();
    

    See the PHP documentation of variable variables and variable functions for more examples of this. The braces are needed because $this->$this->action() would normally be treated as ($this->$this)->action().

    0 讨论(0)
  • 2021-01-23 01:56

    You can simply put the $this->action in another local variable and then, call it:

    $action = $this->action;
    $this->$action();
    
    0 讨论(0)
提交回复
热议问题