Looking for more information on how to do PHP the right way? Check out PHP: The Right Way

Jacob Santos's Blog:
Don't Advocate Inner Classes
Aug 11, 2006 @ 12:38:43

Jacob Santos talks in this new blog post about something that, if added to PHP, just might be more trouble than it's worth - inner classes.

Inner Classes are contained in parent classes and offer a sort of namespace mechanism for the public and open private class data transfer for private subclasses.

The functionality is already available in other languages, but the question is whether it is needed in PHP. The short answer is no. With PHP execution model, it would further slow down and bloat PHP compilation.

He demonstrates their purpose with some simple examples but also gives the reasons why it would be a bad thing to try to include them, including the better choice of namespaces over inner classes.

tagged: inner classes advocate purpose namespaces choice inner classes advocate purpose namespaces choice

Link:


Trending Topics: