| 1 | <?php |
||
| 16 | class PropertyDemo |
||
| 17 | { |
||
| 18 | public $publicProperty = 123; |
||
| 19 | |||
| 20 | protected $protectedProperty = 456; |
||
| 21 | |||
| 22 | public function showProtected() |
||
| 23 | { |
||
| 24 | echo $this->protectedProperty, PHP_EOL; |
||
| 25 | } |
||
| 26 | |||
| 27 | public function setProtected($newValue) |
||
| 28 | { |
||
| 29 | $this->protectedProperty = $newValue; |
||
| 30 | } |
||
| 31 | } |
||
| 32 |