1. 程式人生 > >php -- new self() 和 new static

php -- new self() 和 new static

如果 color fun span pre clas stat 類繼承 extends

看一段摘自網上的代碼

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

通俗點講就是:

new self(); 在哪個類裏面執行的該代碼,返回的就是哪個類的對象。如果該代碼只寫在父類中,即使子類繼承自父類,返回的依然是父類的對象。

new static(); 哪個類調用的它,返回的就是哪個類的的對象。

php -- new self() 和 new static