<?php class father{ //定義father類 public function method(){ //定義方法 echo '<br />father method'; } } class son extends father{ //定義繼承自father類的son類 public function method(){ //重寫父類方法 echo 'son method'; } public function parent_method(){ //定義方法 parent::method(); //調用父類方法 } } $son=new son(); //實例化son類的對象 //調用son類的方法 $son->method(); $son->parent_method(); ?>
不忘初心,若是您認爲這篇文章有價值,認同做者的付出,能夠微信二維碼打賞任意金額給做者(微信號:382477247)哦,謝謝。php