php this、self和parent理解

一,this
1,使用用this,必須有個實例化後的對象,不然會報錯:Fatal error: Using $this when not in object context。
2,this能夠調用本類中的方法和屬性,也能夠調用父類中的能夠調的方法和屬性。this

二,self
1,self能夠訪問本類中的靜態屬性和靜態方法,能夠訪問父類中的靜態屬性和靜態方法。
2,使用self時,能夠不用實例化。對象

三,parent
1,parent能夠訪問父類中的靜態屬性和靜態方法。
2,使用parent時,能夠不用實例化。object

相關文章
相關標籤/搜索