Guest User

Untitled

a guest
Aug 21st, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.12 KB | None | 0 0
  1. <?php
  2.  
  3. // autoload.php
  4. // php5.3 <=
  5.  
  6. spl_autoload_register(function($name) {
  7. require __DIR__."/lib/".$name.".php";
  8. });
Add Comment
Please, Sign In to add comment