PHP中new static()與new self()的區(qū)別異同分析
本文實(shí)例講述了PHP中new static()與new self()的區(qū)別異同,相信對(duì)于大家學(xué)習(xí)PHP程序設(shè)計(jì)能夠帶來一定的幫助。
問題的起因是本地搭建一個(gè)站。發(fā)現(xiàn)用PHP 5.2 搭建不起來,站PHP代碼里面有很多5.3以上的部分,要求更改在5.2下能運(yùn)行。
改著改著發(fā)現(xiàn)了一個(gè)地方
return new static($val);
這尼瑪是神馬,只見過
return new self($val);
于是上網(wǎng)查了下,他們兩個(gè)的區(qū)別。
self - 就是這個(gè)類,是代碼段里面的這個(gè)類。
static - PHP 5.3加進(jìn)來的只得是當(dāng)前這個(gè)類,有點(diǎn)像$this的意思,從堆內(nèi)存中提取出來,訪問的是當(dāng)前實(shí)例化的那個(gè)類,那么 static 代表的就是那個(gè)類。
還是看看老外的專業(yè)解釋吧:
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.
In the following example, B inherits both methods from A. self is bound to A because it's defined in A's implementation of the first method, whereas static is bound to the called class (also see get_called_class() ).
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
這個(gè)例子基本上一看就懂了吧。
原理了解了,但是問題還沒有解決,如何解決掉 return new static($val); 這個(gè)問題呢?
其實(shí)也簡單就是用 get_class($this); 代碼如下:
class A { public function create1() { $class = get_class($this); return new $class(); } public function create2() { return new static(); } } class B extends A { } $b = new B(); var_dump(get_class($b->create1()), get_class($b->create2())); /* The result string(1) "B" string(1) "B" */
感興趣的朋友可以動(dòng)手測(cè)試一下示例代碼,相信會(huì)有新的收獲!
- php self,$this,const,static,->的使用
- php類中的$this,static,final,const,self這幾個(gè)關(guān)鍵字使用方法
- PHP中new static() 和 new self() 的區(qū)別介紹
- PHP中static關(guān)鍵字以及與self關(guān)鍵字的區(qū)別
- PHP new static 和 new self詳解
- PHP面向?qū)ο笾衝ew self()與 new static()的區(qū)別淺析
- 淺談PHP中new self()和new static()的區(qū)別
- php類中static與self的使用區(qū)別淺析
相關(guān)文章
PHP中Header使用的HTTP協(xié)議及常用方法小結(jié)
這篇文章主要介紹了PHP中Header使用的HTTP協(xié)議及常用方法,包含了各種錯(cuò)誤編碼類型及其含義,需要的朋友可以參考下2014-11-11修改php.ini以達(dá)到屏蔽錯(cuò)誤信息并記錄日志
這篇文章主要介紹了通過修改php.ini文件來實(shí)現(xiàn)如果關(guān)閉與開啟錯(cuò)去信息,并給出了比較好的方法,既能看到錯(cuò)誤信息也防止信息泄露問題2013-06-06php數(shù)組函數(shù)序列之rsort() - 對(duì)數(shù)組的元素值進(jìn)行降序排序
rsort() 函數(shù)對(duì)數(shù)組的元素按照鍵值進(jìn)行逆向排序。與 arsort() 的功能基本相同。注釋:該函數(shù)為 array 中的單元賦予新的鍵名。這將刪除原有的鍵名而不僅是重新排序。2011-11-11PHP排序算法之快速排序(Quick Sort)及其優(yōu)化算法詳解
這篇文章主要介紹了PHP排序算法之快速排序(Quick Sort)及其優(yōu)化算法,結(jié)合實(shí)例形式分析了php快速排序的原理、實(shí)現(xiàn)方法,并分析了各種優(yōu)化技巧與操作注意事項(xiàng),需要的朋友可以參考下2018-04-04MayFish PHP的MVC架構(gòu)的開發(fā)框架
MayFish,一款PHP的MVC架構(gòu)的開發(fā)框架。小巧精煉。歡迎大家測(cè)試和使用,歡迎大家對(duì)他的發(fā)展提出更好的建議。2009-08-08