Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2. require_once 'config.php';
  3.  
  4. spl_autoload_register(
  5. function($className) {
  6. $rootPath = $_SERVER['DOCUMENT_ROOT'].DIRECTORY_SEPARATOR;
  7. $classPath = str_replace('\\', DIRECTORY_SEPARATOR,$className);
  8.  
  9. require_once($rootPath.$classPath.'.php');
  10. }
  11. );
  12.  
  13. require_once 'route.php';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement