一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

PHP中new static()與new self()的區別異同分析

本文實例講述了php中new static()與new self()的區別異同,相信對于大家學習php程序設計能夠帶來一定的幫助。

問題的起因是本地搭建一個站。發現用php 5.2 搭建不起來,站php代碼里面有很多5.3以上的部分,要求更改在5.2下能運行。

改著改著發現了一個地方

return new static($val);

這尼瑪是神馬,只見過

return new self($val);

于是上網查了下,他們兩個的區別。

self - 就是這個類,是代碼段里面的這個類。

static - php 5.3加進來的只得是當前這個類,有點像$this的意思,從堆內存中提取出來,訪問的是當前實例化的那個類,那么 static 代表的就是那個類。

還是看看老外的專業解釋吧:

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()); // Aecho get_class(B::get_static()); // Becho get_class(A::get_static()); // A

這個例子基本上一看就懂了吧。

原理了解了,但是問題還沒有解決,如何解決掉 return new static($val); 這個問題呢?

其實也簡單就是用 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技術PHP中new static()與new self()的區別異同分析,轉載需保留來源!

鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。

主站蜘蛛池模板: 男啪女色黄无遮挡免费视频 | 久久精品全国免费观看国产 | 98视频在线观看 | 久久66热re国产毛片基地 | 亚洲激情a | 国产在线精品一区二区三区不卡 | 色综合久久综合欧美综合图片 | 樱花aⅴ一区二区三区四区 影音先锋 色天使 | 欧美一级特黄特黄做受 | 91色国产 | 2021一本久道 | 国产一区二区精品久久岳 | 怡红院亚洲红怡院天堂麻豆 | 国产成人在线视频网站 | 看大片全色黄大色黄 | 精品国产一区二区三区香蕉事 | 一本色道久久综合亚洲精品 | 国产一二三区在线观看 | 亚洲综合亚洲综合网成人 | 欧美另类杂交a | 全国最大色成免费网站 | 中文字幕佐山爱一区二区免费 | 久久er精品视频 | 欧美成人精品福利在线视频 | 视频成人永久免费看 | 亚洲精品无码专区在线播放 | 韩国资源视频一区二区三区 | 久久这里只有 | 国语自产精品视频在线区 | 丁香六月色婷婷 | 亚洲狠狠婷婷综合久久久久网站 | 免费国产人做人视频在线观看 | 91大神麻豆 | 日本www在线观看 | 涩涩爱在线| 国色天香网站 | 国产午夜亚洲精品不卡福利 | 好吊妞精品 | 91免费国产精品 | 午夜免费小视频 | 激情五月五月婷婷 |