Adding Properties : Class Property « Class « PHP
- PHP
- Class
- Class Property
Adding Properties
<?
class Dog {
public $Name;
public function bark( ) {
print "Woof!\n";
}
}
$poppy = new Poodle;
$penny = new Poodle;
$poppy->Name = "Poppy";
$penny->Name = "Penny";
print $poppy->Name;
?>
Related examples in the same category