Why not use 'protected' or 'private' in PHP? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T09:06:54Zhttp://stackoverflow.com/feeds/question/196737http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/196737/why-not-use-protected-or-private-in-php4Why not use 'protected' or 'private' in PHP?Steven Oxley2008-10-13T04:44:51Z2008-10-13T20:31:25Z
<p>I've been working with the Joomla framework and I have noticed that they use a convention to designate private or protected methods (they put an underscore "<code>_</code>" in front of the method name), but they do not explicitly declare any methods <code>public</code>, <code>private</code>, or <code>protected</code>. Why is this? Does it have to do with portability? Are the <code>public</code>, <code>private</code>, or <code>protected</code> keywords not available in older versions of PHP?</p>
http://stackoverflow.com/questions/196737/why-not-use-protected-or-private-in-php/196739#19673910Answer by Owen for Why not use 'protected' or 'private' in PHP?Owen2008-10-13T04:46:06Z2008-10-13T05:02:45Z<p>public, private and protected are PHP5 keywords. unfortunately, PHP4 still has a very high install base (especially amongst shared hosting services).</p>
<p>here's a <a href="http://www.nexen.net/images/stories/phpversion/200807/evolution.milieu.png" rel="nofollow">pretty pic</a> showing july usage rates (text in french). <strong>spoiler</strong>: php4 still has over a 35% usage rate sadly.</p>
http://stackoverflow.com/questions/196737/why-not-use-protected-or-private-in-php/198927#1989272Answer by ruquay for Why not use 'protected' or 'private' in PHP?ruquay2008-10-13T20:31:25Z2008-10-13T20:31:25Z<p>PHP5 introduced some hefty changes in the object model. Among supporting visibility, there are various other changes. Be sure to check out:</p>
<p><a href="http://www.php.net/manual/en/language.oop.php" rel="nofollow">PHP 4 lasses and objects</a></p>
<p><a href="http://www.php.net/manual/en/language.oop5.php" rel="nofollow">PHP 5 classes and objects</a></p>