Advertisement
edelgado

php_autoload

Mar 17th, 2013
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. function my_autoloader($class) {
  2.     include 'classes/' . $class . '.class.php';
  3. }
  4.  
  5. spl_autoload_register('my_autoloader');
  6. //to user when there are auto load conflicts, ex: using Smarty
  7. //it is possible to register multiple functions to the auto load stack that will be checked sequencially
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement