Private and inheritance : private « Class « PHP
- PHP
- Class
- private
Private and inheritance
<?
class Dog {
private $Name;
}
class Poodle extends Dog { }
$poppy = new Poodle;
$poppy->Name = "Poppy";
print_r($poppy);
?>
Related examples in the same category