学堂 学堂 学堂公众号手机端

在PHP中,可以使用parent::关键字来引用父类方法

lewis 1年前 (2024-04-12) 阅读数 11 #技术

在PHP中,可以使用parent::关键字来引用父类方法。例如,在子类中调用父类的方法可以这样写:

classParentClass{ publicfunctionparentMethod(){ echo"Thisisparentmethod"; } } classChildClassextendsParentClass{ publicfunctionchildMethod(){ parent::parentMethod(); } } $child=newChildClass(); $child->childMethod();//输出:Thisisparentmethod

在子类的方法中使用parent::parentMethod()来调用父类的parentMethod()方法。


版权声明

本文仅代表作者观点,不代表博信信息网立场。

热门