jinnguyen/puja-config
Composer 安装命令:
composer require jinnguyen/puja-config
包简介
Allow load multi configured files, access the configured value as an object
README 文档
README
Allow load multi configured files, access the configured value as an object
Install:
composer require jinnguyen/puja-config
Usage:
require 'path/to/vendor/autoload.php';
Example:
Folder tree:
root/ root/app/configure.php root/app/configure_local.php root/config/configure.php root/config/configure_local.php
File root/config/configure.php
$configures['database'] = array(
'host' => 'localhost',
);
$configures['app_name'] = 'Puja/Config';
File root/config/configure_local.php
$configures['database'] = array(
'host' => 'remote_host',
);
File root/app/configure.php
$configures['session'] = array(
'savePath' => '/tmp',
);
File root/app/configure_local.php
$configures['session'] = array(
'savePath' => '/home/tmp',
);
File root/demo.php:
include 'path/to/vendor/autoload.php';
use Puja\Configure\Configure;
new Configure(array('config/', 'app/'));
$databaseCfg = Configure::getInstance('database');
echo $databaseCfg->get('host'); // remote_host
$sessionCfg = Configure::getInstance('session');
echo $sessionCfg->get('savePath'); // /home/tmp
$allCfg = Configure::getInstance();
echo $allCfg->get('app_name'); // Puja/Config
Note
new Configure(array('config/', 'app/')); is same with
require config/configure.php require config/configure_local.php require app/configure.php require app/configure_local.php
So the values from configure_local.php will overwrite configure.php in same folder, the last folder will overwrite the previous folder.
统计信息
- 总下载量: 47
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: Apache
- 更新时间: 2016-11-04