Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
1  
@Nikola This was helpful, Thank you. – Amr Sep 25 '12 at 6:39

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.

2 Answers

Just use namespaces with an autoloader.

This way you can organize your folders this way:

/
  src
    Model
      User.php
    View
      index.php
    Controller
     HomeController.php
  assets
    img
    js
    css

Your User class will be like:

namespace Model;

class User{ ... }

and you can refer to it this way:

$user = new \Model\User;

or:

<?php

use \Model\User;

...
// later in your code
$user = new User;

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:

spl_autoload_register(function ($class) {
    include 'src' . str_replace('\\', DIRECTORY_SEPARATOR, $class) . '.php';
});

It will search classes from src folder based on class name, in this case Model\User.


These are the basics, it's up to you to tweak it a bit.

share|improve this answer

The best way is that the directory structure and file-organizing reflects the application so that it is accessible for development and operation.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.