PHP中new static() 和 new self() 的區(qū)別介紹
長(zhǎng)夜漫漫啊!
今天領(lǐng)導(dǎo)本地搭建一個(gè)站。發(fā)現(xiàn)用PHP 5.2 搭建不起來(lái),站PHP代碼里面有很多5.3以上的部分,領(lǐng)導(dǎo)讓苦逼我更改在5.2下能運(yùn)行。
改著改著發(fā)現(xiàn)了一個(gè)地方
return new static($val);
這尼瑪是神馬,只見過(guò)
return new self($val);
于是上網(wǎng)查了下,他們兩個(gè)的區(qū)別。
self – 就是這個(gè)類,是代碼段里面的這個(gè)類。
static – PHP 5.3加進(jìn)來(lái)的只得是當(dāng)前這個(gè)類,有點(diǎn)像$this的意思,從堆內(nèi)存中提取出來(lái),訪問(wèn)的是當(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è)例子基本上一看就懂了吧。
原理了解了,但是問(wèn)題還沒(méi)有解決,如何解決掉 return new static($val); 這個(gè)問(wèn)題呢?
其實(shí)也簡(jiǎn)單就是用 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"
*/
- PHP中new static()與new self()的區(qū)別異同分析
- php self,$this,const,static,->的使用
- php類中的$this,static,final,const,self這幾個(gè)關(guān)鍵字使用方法
- 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+mysql實(shí)現(xiàn)簡(jiǎn)單的增刪改查功能
本文給大家分享的是使用php結(jié)合mysql實(shí)現(xiàn)簡(jiǎn)單的增刪改查的功能的代碼,非常的簡(jiǎn)單實(shí)用,有需要的小伙伴可以參考下。2015-07-07
PHP array_multisort() 函數(shù)的深入解析
本篇文章是對(duì)PHP中的array_multisort()函數(shù)進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下2013-06-06
PHP使用PHPexcel導(dǎo)入導(dǎo)出數(shù)據(jù)的方法
這篇文章主要介紹了PHP使用PHPexcel導(dǎo)入導(dǎo)出數(shù)據(jù)的方法,以實(shí)例形式較為詳細(xì)的分析了PHP使用PHPexcel實(shí)現(xiàn)數(shù)據(jù)的導(dǎo)入與導(dǎo)出操作相關(guān)技巧,需要的朋友可以參考下2015-11-11
php判斷文件上傳類型及過(guò)濾不安全數(shù)據(jù)的方法
這篇文章主要介紹了php判斷文件上傳類型及過(guò)濾不安全數(shù)據(jù)的方法,可實(shí)現(xiàn)對(duì)$_COOKIE、$_POST、$_GET中不安全字符的過(guò)濾功能,非常具有實(shí)用價(jià)值,需要的朋友可以參考下2014-12-12

