当前位置 : 主页 > 网络编程 > PHP >

glob(app_path('Http//Routes') . '/*.php')

来源:互联网 收集:自由互联 发布时间:2021-06-28
gistfile1.txt public function map(Router $router) { // $router-group(['namespace' = $this-namespace], function ($router) { // require app_path('Http/routes.php'); // }); $router-group(['namespace' = $this-namespace], function ($router) { //
gistfile1.txt
public function map(Router $router)
    {
        // $router->group(['namespace' => $this->namespace], function ($router) {
        //     require app_path('Http/routes.php');
        // });


        $router->group(['namespace' => $this->namespace], function ($router) {
        // require app_path('Http/routes.php');
        foreach (glob(app_path('Http//Routes') . '/*.php') as $file) {
        //    $this->app->make('App\\Http\\Routes\\' . basename($file, '.php'))->map($router);
            $list = explode('/',$file);
            require app_path('Http//Routes//') . $list[count($list)-1];
        }
        });
    }
上一篇:环境配置
下一篇:PHPExcel导入Excel数据
网友评论