zl程序教程

您现在的位置是:首页 >  大数据

当前栏目

lumen 添加配置

配置 添加 Lumen
2023-09-14 09:12:11 时间

app同级目录新建config目录

添加配置文件

 

 

 

 

bootstrap/app.php里面加载

 

$app->configure('options');

使用
$router->get('/', function () use ($router) {
return config('options.author');
});