关于PHP中static和self的区别 static类 static读音 staticlayout
程序员文章站
2022-05-15 18:25:43
...
之前看过一次,但是忘了static和self的具体区别了,这次在复习一下。
self:静态方法,指向本身存在的类
static是PHP5.3之后加进来的,看一下英文的解释:
self refers to the same class whose method the new operation takes place in.
static in PHP 5.3's late static bindings refers to whatever class in the hierarchy which you call the method on.
之前看过一个文章这个例子很好:class A { public static function who() { echo __CLASS__; } public static function test() { self::who(); // static::who(); } } A::test(); class B extends A { public static function who() { echo __CLASS__; } } echo B::test();
self:静态方法,指向本身存在的类
static:指向调用它的类
还是很容易理解的,下次不能再忘了。
以上就介绍了关于PHP中static和self的区别,包括了static方面的内容,希望对PHP教程有兴趣的朋友有所帮助。
推荐阅读
-
PHP中new static()与new self()的区别异同分析
-
php面向对象程序设计中self与static的区别分析
-
PHP的new static和new self的区别与使用
-
php类中的$this,static,final,const,self这几个关键字使用方法
-
php中关于self和static代表本类的区别详解
-
PHP中static关键字以及与self关键字的区别
-
PHP中new static() 和 new self() 的区别介绍
-
php类中static与self的使用区别浅析
-
php面向对象程序设计中self与static的区别分析
-
PHP中new static()与new self()的区别异同分析