/
spirzen
/
it-code-examples
Обзор
Документация
Войти
/
spirzen
/
it-code-examples
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/php/php-507-157-002/main.php
16 строк
363 B
Spirzen
Code migration pack
09 июн 2026, 01:41
09 июн 2026, 01:41
cebc284
Код
Авторство
О чём код?
<?php spl_autoload_register(function (string $class): void { $prefix = 'App\\'; $baseDir = __DIR__ . '/src/'; if (!str_starts_with($class, $prefix)) { return; } $relative = substr($class, strlen($prefix)); $file = $baseDir . str_replace('\\', '/', $relative) . '.php'; if (is_file($file)) { require $file; } });