Calling static method from object array variable

前端 未结 3 1530
后悔当初
后悔当初 2021-01-07 23:27

In PHP you can call a class\'s static method from an object instance (which is contained in an array) like this:

$myArray[\'instanceOfMyClass\']::staticMetho         


        
相关标签:
3条回答
  • 2021-01-08 00:13

    This is a really interesting problem, it may even be a bug in PHP itself.

    For a work around, use the KISS principle.

    class RunCode
    {
        private $myArray;
    
        public function __construct(){
            $this->myArray = array();
            $this->myArray['instanceOfMyClass'] = new MyClass;
    
            $instance = $this->myArray['instanceOfMyClass']
            $instance::staticMethod();
        }
    }
    

    Hope this helps!

    0 讨论(0)
  • 2021-01-08 00:13

    You will have to break up the one liner using a temporary variable, e.g.

    $inst = $this->myArray['instanceOfMyClass'];
    $inst::staticMethod()
    

    This is one of many cases where PHP's compiler is not clever enough to understand nested expressions. The PHP devs have been improving this recently but there is still work to do.

    0 讨论(0)
  • 2021-01-08 00:17

    You actually can use "->" to call static method:

    $this->myArray['instanceOfMyClass']->staticMethod();
    
    0 讨论(0)
提交回复
热议问题