温馨提示×

PHP中怎么引用父类方法

PHP
小亿
82
2024-02-20 16:17:17
栏目: 编程语言

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

class ParentClass {
    public function parentMethod() {
        echo "This is parent method";
    }
}

class ChildClass extends ParentClass {
    public function childMethod() {
        parent::parentMethod();
    }
}

$child = new ChildClass();
$child->childMethod(); //输出:This is parent method

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

0