+ 1
What is the difference between private and protected members of a class?
What is the difference between private and protected members of a class?
1 ответ
+ 15
Members declared protected can be accessed only within the class itself and by inheriting and parent classes. Members declared as private may only be accessed by the class that defines the member.
http://php.net/manual/en/language.oop5.visibility.php