autoload.php 256 B

12345678910111213
  1. <?php
  2. function classLoader($class){
  3. $path = str_replace('\\', DIRECTORY_SEPARATOR, $class);
  4. $file = __DIR__ . '/src/' . $path . '.php';
  5. if (file_exists($file)) {
  6. require_once $file;
  7. }
  8. }
  9. spl_autoload_register('classLoader');