Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. spl_autoload_register(function($class){
  2. if (strpos($class, 'Controller') > -1) {
  3. if (file_exists('controllers/'.$class.'.php')) {
  4. require_once 'controllers/'.$class.'.php';
  5. }
  6. } else if (file_exists('models/'.$class.'.php')) {
  7. require_once 'models/'.$class.'.php';
  8. } else {
  9. require_once 'core/'.$class.'.php';
  10. }
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement