Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. spl_autoload_register(function ($class_name) {
  2. $file = __DIR__ . DIRECTORY_SEPARATOR . str_replace('\\', DIRECTORY_SEPARATOR, $class_name) . '.php';
  3. if (file_exists($file)):
  4. require_once $file;
  5. endif;
  6. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement