codegun / ini
Ini Parser and Builder for PHP
Installs: 136
Dependents: 0
Suggesters: 0
Security: 0
Stars: 7
Watchers: 0
Forks: 1
Open Issues: 2
pkg:composer/codegun/ini
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2025-10-11 18:47:19 UTC
README
Ini Parser and Builder for PHP
Install
Add codegun/ini
to composer.json
then install with composer.phar install
Namespace
All the classes under CodeGun\Ini
namespace
- Parser
- Builder
Usage
$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;