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
If they all are in the same file, no the order shouldn't matter. There are some rare instances (I've seen with namespaces) where the order does matter, but don't worry about that too much unless you're pushing the envelope.
Try it. The worst that can happen is that it'll give you an error...