Advertisement
darryljf

autoloader.include.php

Mar 30th, 2020
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. function autoload($classname){
  4.   if(file_exists(__DIR__.'/../classes/'.strtolower($classname).'.class.php')){
  5.     require_once(__DIR__.'/../classes/'.strtolower($classname).'.class.php');
  6.   }
  7.  
  8.   spl_autoload_register('autoload');
  9. }
  10.  
  11.  ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement