PHP
0
Вклад в тег
spl_autoload_register(function ($class)
{
$path = str_replace('\\', '/', \Application::getRootDirectory() . '/src/addons/' . $class . '.php');
if (!file_exists($path))
{
throw new \Exception("Файл расширения {$class} по пути {$path} не найден!");
}
else
{
require $path;
}
});