區別PHP中new self() 和 new static()

2020-07-16 10:05:55

PHP中new self() 和 new static() 的區別

new static() 是在php5.3版本引入的新特性

new static 和 new self() 都是 new 一個物件

直接看程式碼

class Father
{
    public function getNewFather()
    {
        return new self();
    }
  
    public function getNewCaller()
    {
        return new static();
    }
}
  
$f = new Father();
  
var_dump(get_class($f->getNewFather())); // Father
var_dump(get_class($f->getNewCaller())); // Father

getNewFather和getNewCaller 都是返回的 Father 這個實列

到這裡貌似 new self() 還是 new static() 是沒有區別的

接著看下面的範例

class Sun1 extends Father{
  
}
  
$sun1 = new Sun1();
  
var_dump($sun1->getNewFather()); // object(Father)#4 (0) { }
var_dump($sun1->getNewCaller()); // object(Sun1)#4 (0) { }

getNewFather 返回的是Father的實列,

getNewCaller 返回的是呼叫者的實列

他們的區別只有在繼承中才能體現出來、如果沒有任何繼承、那麼二者沒有任何區別

new self() 返回的實列是不會變的,無論誰去呼叫,都返回的一個類的實列,

new static則是由呼叫者決定的。

推薦教學:《PHP視訊教學

以上就是區別PHP中new self() 和 new static()的詳細內容,更多請關注TW511.COM其它相關文章!