You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
401 B
16 lines
401 B
12 months ago
|
<?php
|
||
|
|
||
|
require_once __DIR__ . '/../lib/common/customFunctions.php';
|
||
|
|
||
|
spl_autoload_register(function (string $class) {
|
||
|
$path = explode('\\', $class);
|
||
|
$className = array_pop($path);
|
||
|
array_shift($path);
|
||
|
$path = strtolower(implode('/', $path));
|
||
|
$path = __DIR__ . '/../lib/' . $path . '/' . $className . '.php';
|
||
|
|
||
|
if (file_exists($path)) {
|
||
|
require_once $path;
|
||
|
}
|
||
|
});
|