work/route/route.php
2024-01-03 09:54:57 +08:00

15 lines
309 B
PHP
Executable File

<?php
/**
* 模块路由及配置检测并加载
* @include module/init.php
*/
foreach (scandir(env('app_path')) as $dir) {
if ($dir[0] !== '.') {
$filename = realpath(env('app_path') . "{$dir}/init.php");
$filename && file_exists($filename) && include($filename);
}
}
return [];