Advertisement
Guest User

Untitled

a guest
Dec 16th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. <?php
  2.  
  3. spl_autoload_register(function($class_name){
  4.  
  5. $filename = $class_name. ".php";
  6.  
  7. if (file_exists($filename)) {
  8. require_once($filename);
  9. }
  10.  
  11. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement