// +---------------------------------------------------------------------- namespace think\console\command\optimize; use think\console\Command; use think\console\Input; use think\console\Output; use think\Container; class Route extends Command { /** @var Output */ protected $output; protected function configure() { $this->setName('optimize:route') ->setDescription('Build route cache.'); } protected function execute(Input $input, Output $output) { $filename = Container::get('app')->getRuntimePath() . 'route.php'; unlink($filename); file_put_contents($filename, $this->buildRouteCache()); $output->writeln('Succeed!'); } protected function buildRouteCache() { Container::get('route')->setName([]); Container::get('route')->lazy(false); // 路由检测 $path = Container::get('app')->getRoutePath(); $files = is_dir($path) ? scandir($path) : []; foreach ($files as $file) { if (strpos($file, '.php')) { $filename = $path . DIRECTORY_SEPARATOR . $file; // 导入路由配置 $rules = include $filename; if (is_array($rules)) { Container::get('route')->import($rules); } } } if (Container::get('config')->get('route_annotation')) { include Container::get('build')->buildRoute(); } $content = 'getName(), true) . ';'; return $content; } }