在PHP中,可以使用parent::
关键字来调用父类的方法。以下是一个例子:
class ParentClass {
public function sayHello() {
echo "Hello from ParentClass!";
}
}
class ChildClass extends ParentClass {
public function sayHello() {
parent::sayHello(); // 调用父类的方法
echo "Hello from ChildClass!";
}
}
$child = new ChildClass();
$child->sayHello();
在上面的例子中,ChildClass
继承自ParentClass
,在ChildClass
中重写了sayHello
方法,并在重写方法中使用parent::sayHello()
来调用父类的方法。当调用sayHello
方法时,会先输出"Hello from ParentClass!“,然后再输出"Hello from ChildClass!”。