I'm developing a PHP library which will have several classes each one in a different file, so I need a way to require them or autoload them when they are needed.
My question is, which do you think it would be the best practice? I give two options, but others are welcome:
1) Simply require them
Use the require_once and require the files I'll need.
Pros
- It doesn't pollute any autoload functions stack created by the user (the one of
spl_autoload_register())
Contras
- I must keep this in mind if I add another class to the library
2) Use spl_autoload features
Register a custom function with spl_autoload_register.
Pros
- As far as I follow simple naming conventions, I can forget about autoloading new classes.
Contras
I pollute user custom stack of functions of
spl_autoload_register(). Maybe this could generate some conflict? Even if I canspl_autoload_unregister()this when my classes are destroyed.It can generate some code redundancy. For example, if I use my custom autoload function, surely I'll bet for the PSR-0 standard one. If a user, for example, is using a framework which as well use that function, then we have the same code defined twice. It won't be conflict problems because I'd use my own namespace, but anyway it's not the most efficient.
Thank you for any advice.

spl_autoload_registerworks fine, if you want to have something re-useable that shares a common with others, use PSR-0. Apart from these standards, you can do whatever you want and see fit. The problem with your question is that the answer is: It depends. So it's not concrete, instead it's hard to answer. You might find others who think PSR-0 is shit or who just love__autoloadabove spl (less likely, but you can find idiots everywhere). As every developer has three ways of doing things, it's not likely your question is getting a useful answer. – hakre Jul 1 '12 at 14:25