阅读量:0
要通过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
来访问父类的属性。