tvr/config

简单配置类

v1.0.1 2013-03-21 23:37 UTC

This package is not auto-updated.

Last update: 2024-09-14 13:25:17 UTC


README

使用说明

<?php

use \Tvr\Config;

$config = new Config(__DIR__.'/../data/mainconfig.php');
echo $config->getParam('this.config.param1');
?>

主配置文件

<?php
return array(
    'this' => array(
        'my' => 'one',
        'config' => array(
            'param1' => 3.14,
            'param2' => 'simpletest'
        )
    )
);
?>

从Packagist安装

{
    "require": {
        "tvr/config": "v1.0.1"
    }
}