php 引用父類屬性
2024-02-15 17:10:17
```php
class ParentClass {
public $property = 'Hello, World!';
}
class ChildClass extends ParentClass {
public function display() {
echo parent::$property;
}
}
$childObject = new ChildClass();
$childObject->display(); // 輸出: Hello, World!
```
在這個例子中,“ChildClass”是“ParentClass”的子類在“ChildClass”的“display”方法中通過“parent::$property”引用了父類的“property”屬性。