Is it possible to create packages of related class and have the same protected and private fields which are visible only to classes from the same package? Basically, the same type of packages as what Java has?

Is it possible?

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

Right now, there is no concept of package.

However, PHP 5.3 is going to introduce namespaces. I'm not sure about how that will affect visibility between classes.

link|improve this answer
feedback

Nope. PHP has no package or friend-class support.

link|improve this answer
feedback

Here are two approaches I've stumbled upon pondering the same issue:

Simulating Packages in PHP

PHP Package Management and Autoloading

And it looks like there are some more import analogs in the PHP require_once() docs. Hope it helps someone going forward.

link|improve this answer
feedback

You might be interested to read http://philsturgeon.co.uk/blog/2012/03/packages-the-way-forward-for-php

Short answer - http://getcomposer.org/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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