What is the best directory structures of an object oriented PHP project? taking security into consideration among the other factors. I usually use these technologies to build websites: OOP PHP/MySql, html, css, javascript/jQuery, ajax and smarty. And I don't want to use a framework right now.
|
closed as not constructive by JvdBerg, Mathieu Imbert, Dagon, Nikola K., tereško Sep 24 '12 at 20:50
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Just use namespaces with an autoloader. This way you can organize your folders this way:
Your
and you can refer to it this way:
or:
Where's the magic? When you ask for a class, the autoloader requires it [and throws an exception if anything goes wrong]. A basic autoloader will look like:
It will search classes from These are the basics, it's up to you to tweak it a bit. |
|||
|
|
|
The best way is that the directory structure and file-organizing reflects the application so that it is accessible for development and operation. |
|||
|
|
