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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP new self()和new static()的区别相关的知识,希望对你有一定的参考价值。

new static()是php5.3以后引入新的特性,延迟静态绑定.访问的是当前实例化的那个类,那么 static 代表的就是那个类。

new self() 是指的不是调用上下文,它指的是解析上下文.

class  Test {

    public static funtion getSelf(){

            return new self();

     }

    

    public static funtion getStatic(){

            return new static();

     }

  }

class  Test1 extends Test {


  }

echo get_class(Test1 ::getSelf);  输出:Test 

echo get_class(Test1 ::getStatic);输出:Test1 

echo get_class(Test ::getStatic);输出:Test 

以上是关于PHP new self()和new static()的区别的主要内容,如果未能解决你的问题,请参考以下文章

php -- new self() 和 new static

PHP 的 new static 和 new self

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

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

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

php 小知识随手记 new self() 和new static()作用和区别