My apollogies if this is the 900th report....
errors and corrections in XML-style tags <error></error><correction></correction>

on page http://www.php.net/manual/en/language.oop5.visibility.php

Visibility

The visibility of a member or method can be defined by prefixing the declaration with 
the keywords: public, protected or private. Public declared items can be allow access 
to any caller. Protected limits access access to only classes inherited. 
<error>Protected</error><correction>Private</correction> limits visiblity only to the 
class that defines the item.

Members Visibility

Class members must be defined with public, 
<error>private</error><correction>protected</correction>, or private. 

Robb Hammack

Reply via email to