laravel-dev-common / union-config
Laravel dev config util
Installs: 170
Dependents: 8
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:util
Requires
- php: >=5.5.9
This package is not auto-updated.
Last update: 2024-11-09 20:00:19 UTC
README
union系列工具 获取配置文件用(开发 和 运用到laravel中)
示例: 开发过程中目录:
config
union.php
src
union-*.php
vendor
*
config/union.php
<?php
return [
'log'=>[
'sms'=>'/tmp/laravel.log'
],
'mid'=>[
'excepturl'=>[
'3/user/login'
]
]
];
union-*.php 中调用
$tmp = union_config('union.log.sms','');
即可得到'/tmp/laravel.log'
$tmp = union_config('union.test.test','');
在无配置的情况下得到''