php存取父類別方法的辦法:可以用【$this->方法名稱();】來訪問,如果子類別中有該方法,則訪問的是子類別中的方法,如果子類別中沒有該方法,則存取父類別中的方法。
方法的呼叫:
$this->方法名稱();如果子類別中有該方法則呼叫的是子類別中的方法,若沒有則是呼叫父類別中的。
parent::則總是呼叫的是父類別中的方法。
(推薦教學:php影片教學)
變數的呼叫:$this->變數名稱;如果子類別中有該變數則呼叫的是子類別中的,若沒有則呼叫的是父類別中的
程式碼實作:
<?php class A{ public $a1='a1'; protected $a2='a2'; function test(){ echo "hello!<hr/>"; } } class B extends A{//若A类和B类不在同一文件中 请包含后(include)再操作 public $a1='b1'; function test2(){ $this->test(); parent::test();//子类调用父类方法 } function test() { echo $this->a1.','; echo $this->a2.','; echo "b2_test_hello<hr/>"; } } $a = new B(); $a->test();//b1,a2,b2_test_hello $a->test2();//b1,a2,b2_test_hello//hello!
相關推薦:php訓練
#以上是php如何存取父類別方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!