show/hide this revision's text 2 added 154 characters in body

The technology answer is PHP Autoloading.

The implementation answer is this:

One common method used has to do with the names of classes relating to folder structure. There are articles out there, but here is a brief summary:

When setting up your autoload code, take the class name and replace underscores with slashes. This way you can organize your classes in folders.

For example:

Classname: Database_Provider_MySQL

File: Database/Provider/MySQL.php

So in autoload, you'd take the incoming classname, replace the underscores with slashes. Then include that specific file.

This achieves what you are trying to accomplish, you can simply load a class by creating a new instance of it. You never have to use the include statement for these classes.

Do remember to not go to deep where you end up with 6+ levels. I think between 3 and 5 is a good maximum.

Also, this does require that you keep only 1 class per file (similar to Java). Though it might seem inconvenient, it makes locating code a lot easier.

show/hide this revision's text 1

The technology answer is PHP Autoloading.

The implementation answer is this:

One common method used has to do with the names of classes relating to folder structure. There are articles out there, but here is a brief summary:

When setting up your autoload code, take the class name and replace underscores with slashes. This way you can organize your classes in folders.

For example:

Classname: Database_Provider_MySQL

File: Database/Provider/MySQL.php

So in autoload, you'd take the incoming classname, replace the underscores with slashes. Then include that specific file.

This achieves what you are trying to accomplish, you can simply load a class by creating a new instance of it. You never have to use the include statement for these classes.

Do remember to not go to deep where you end up with 6+ levels. I think between 3 and 5 is a good maximum.