laravel 中config的使用

在laravel的config中添加配置文件(比如:alipay.php)文件内容为return数组的形式

在方法中使用config()函数获取数据

$config = config('alipay.alyconf');

其中alipay为config下的配置文件名,alyconf为配置文件alipay.php所return 数组的key值

return [

'alyconf' => array (
//应用ID,您的APPID。
'app_id' => "20180531603",
)
];

使用:

$config = config('alipay.alyconf');

$config即为return的key为alyconf的数组

$alyPay_appid = $config['app_id'];

上面是alipay.php的示例

如此,$config就获取了return的数组。

转载于:https://www.cnblogs.com/lvfish/p/9446840.html

你可能感兴趣的:(laravel 中config的使用)