Private properties are accessible only inside the methods of the class that defined them
<? class Dog { private $Name; private $DogTag; public function setName($NewName) { // etc } } ?>