PHP中new static() 和 new self() 的区别

时间:2021-07-30 00:39:47

self 指的是self所在的类

new static 实例化的是当前使用的类,有点像$this ,从堆内存中提取出来。

还是通过实例说明一下:

class A {
    public static function get_self() {
        return new self();
    }

 

    public static function get_static() {
        return new static();
    }
}

class B extends A {}

echo get_class(B::get_self());  // A
echo get_class(B::get_static()); // B
echo get_class(A::get_static()); // A