self和static在php中有什么區(qū)別?很多新手對此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
class test{ public static function test(){ self::func(); static::func(); } public static function func(){} }
可你知道self和static的區(qū)別么?
其實(shí)區(qū)別很簡單,只需要寫幾個(gè)demo就能懂:
Demo for self:
class Car { public static function model(){ self::getModel(); } protected static function getModel(){ echo "This is a car model"; } }
Car::model();
Class Taxi extends Car { protected static function getModel(){ echo "This is a Taxi model"; } }
Taxi::model();
得到輸出
This is a car model This is a car model
可以發(fā)現(xiàn),self在子類中還是會(huì)調(diào)用父類的方法
Demo for static
class Car { public static function model(){ static::getModel(); } protected static function getModel(){ echo "This is a car model"; } } Car::model(); Class Taxi extends Car { protected static function getModel(){ echo "This is a Taxi model"; } } Taxi::model();
得到輸出
This is a car model This is a Taxi model
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進(jìn)一步的了解或閱讀更多相關(guān)文章,請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對創(chuàng)新互聯(lián)網(wǎng)站建設(shè)公司,的支持。