要通過PHP的parent關鍵字訪問父類屬性,可以使用以下語法:
class ParentClass {
public $parentProperty = 'Parent Property';
}
class ChildClass extends ParentClass {
public function getParentProperty() {
return $this->parentProperty;
}
}
$child = new ChildClass();
echo $child->getParentProperty(); // 輸出 'Parent Property'
在子類中,可以使用$this->parentProperty
來訪問父類的屬性。