17 lines
453 B
PHP
17 lines
453 B
PHP
<?php
|
|
|
|
class Autoloader {
|
|
static function init() {
|
|
spl_autoload_register(function ($class_name) {
|
|
// var_dump($class_name);
|
|
$dir = [ '/../app/controller/' ];
|
|
// print($dir);
|
|
foreach ($dir as $path){
|
|
$path = __DIR__.$path.$class_name . '.php';
|
|
if(file_exists($path)){
|
|
include_once ($path);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
} |