vote up 4 vote down star

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 "_" in front of the method name), but they do not explicitly declare any methods public, private, or protected. Why is this? Does it have to do with portability? Are the public, private, or protected keywords not available in older versions of PHP?

flag

44% accept rate

2 Answers

vote up 10 vote down check

public, private and protected are PHP5 keywords. unfortunately, PHP4 still has a very high install base (especially amongst shared hosting services).

here's a pretty pic showing july usage rates (text in french). spoiler: php4 still has over a 35% usage rate sadly.

link|flag
PHP4 will generate an E_STRICT warning. – Darryl Hein Oct 13 '08 at 4:48
E_STRICT was introduced in PHP5, unless i'm misunderstanding what you're saying – Owen Oct 13 '08 at 4:55
The opposite was true for a while: the first few PHP 5 releases complained when "var" was used. – Ant P Dec 2 '08 at 1:17
vote up 2 vote down

PHP5 introduced some hefty changes in the object model. Among supporting visibility, there are various other changes. Be sure to check out:

PHP 4 lasses and objects

PHP 5 classes and objects

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.