類繼承中 self、static、parent 關鍵字

static 延遲綁定

  • 表明繼承後的類,多用於父類中填寫
  • 用戶屬性與方法時表明類的規則

self 當前類

指向出現的當前類,子類中繼承的方法調用的類其實是父類this

parent 父類

多用來複寫父類方法與屬性code

$this

表明類實例化後的對象對象

abstract | interface

  • abstract 複寫
  • interface 統一規範

Exception 錯誤處理

  • throw 類中拋出錯誤,不進行處理
  • try catch 邏輯層獲取並處理錯誤

攔截器(overloading | interceptor | 魔術方法)

  • __call()
  • __tostring()
  • __clone()
  • __construct() | destruct()
  • __get() | set()
  • __isset() | unset()
相關文章
相關標籤/搜索