douxian8883 2016-12-15 23:44
浏览 48
已采纳

为什么调用__call而不是__callStatic

I tried to refer this question on SO, but still don't get it.

<?php

class A {
    public function __call($method, $parameters) {
        echo "I'm the __call() magic method".PHP_EOL;
    }

    public static function __callStatic($method, $parameters) {
        echo "I'm the __callStatic() magic method".PHP_EOL;
    }
}

class B extends A {
    public function bar() {
        A::foo();
    }

    public function foo() {
        parent::foo();
    }
}

(new B)->bar();
(new B)->foo();

From what I understand, the bar function is calling the foo method on class A statically but the foo method call the method using the instance of A which is the parent of B. I am expecting it should gives me:

I'm the __callStatic() magic method
I'm the __call() magic method

But, apparently, I get:

I'm the __call() magic method
I'm the __call() magic method

展开全部

  • 写回答

2条回答 默认 最新

  • douliang1900 2016-12-16 00:17
    关注

    From relevant issue:

    ...A::foo() is not necessarily a static call. Namely, if foo() is not static and there is a compatible context ($this exists and its class is either the class of the target method or a subclass of it), an instance call will be made.

    If foo() is static it works as you expect:

    class A {
        public function __call($method, $parameters) {
            echo "I'm the __call() magic method $method".PHP_EOL;
        }
    
        public static function __callStatic($method, $parameters) {
            echo "I'm the __callStatic() magic method $method".PHP_EOL;
        }
    }
    
    class B extends A {
        public static function foo() { // <-- static method
            parent::foo();
        }
    }
    
    (new B)->foo();
    

    I'm the __callStatic() magic method foo

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)
编辑
预览

报告相同问题?