在PHP中用父类中的方法调用派生的静态方法

这个问题在这里已经有了答案:

  • PHP中迟到的静态绑定究竟是什么? 7个答案

  • 你使用迟的静态绑定

    基本上在你调用static::method()的抽象类中。 这使用调用的类的方法。

    Abstract Class A{
        public function foo(){
            // Late static binding
            static::bar();
        }
    
       abstract public static function bar();
    }
    
    链接地址: http://www.djcxy.com/p/58029.html

    上一篇: Calling a derived static method from a method in parent class in PHP

    下一篇: Difference between "include" and "require" in php