8 lines
197 B
PHP
8 lines
197 B
PHP
<?php
|
|
spl_autoload_register(function ($class) {
|
|
$file = __DIR__ . DIRECTORY_SEPARATOR . str_replace('\\', '/', $class) . '.php';
|
|
|
|
if (file_exists($file)) {
|
|
require($file);
|
|
}
|
|
}); |