PHP中怎么引用父類方法

PHP
小億
84
2024-02-20 16:17:17
欄目: 編程語言

在PHP中,可以使用parent::關(guān)鍵字來引用父類方法。例如,在子類中調(diào)用父類的方法可以這樣寫:

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()來調(diào)用父類的parentMethod()方法。

0