If I have several classes in different php files that I\'m including into a single file, and some of these classes have dependencies on other classes, does the order in whic
It would matter as if one class tried to use another which had not yet been parsed, then an error would occur. The best option is to place the classes in the script so the dependancy will still be intact.