codegun / ini
PHP 的 Ini 解析器和构建器
0.1.1
2012-08-04 03:53 UTC
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2024-09-14 13:35:26 UTC
README
PHP 的 Ini 解析器和构建器
安装
将 codegun/ini
添加到 composer.json
,然后使用 composer.phar install
安装
命名空间
CodeGun\Ini
命名空间下的所有类
- 解析器
- 构建器
用法
$builder = new \CodeGun\Ini\Builder(array( 'a' => 'd', 'b' => array('test'=> 'c'), 'database' => array( 'default' => array( 'name' => 'db', 'host' => 'master.db', 'ip' => 'dd', ) ), 'array' => array('a', '1', 3), )); echo $builder;