其他分享
首页 > 其他分享> > lumen 添加配置

lumen 添加配置

作者:互联网

app同级目录新建config目录

添加配置文件

 

 

 

 

bootstrap/app.php里面加载

 

$app->configure('options');

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

标签:app,配置,目录,添加,lumen,router,config,options
来源: https://www.cnblogs.com/php-linux/p/12713426.html