php在子類別中呼叫父類別的方法:
#先建立一個父類別A,宣告一個方法「test」
<?php class A{ public $a1='a1'; protected $a2='a2'; function test(){ echo "hello!<hr/>"; } }
接著建立子類別B,用關鍵字「extends」繼承父類別A,建立子類別B,並使用「parent::test()」
<?php 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中文網其他相關文章!