codegun/ini

Ini Parser and Builder for PHP

0.1.1 2012-08-04 03:53 UTC

This package is not auto-updated.

Last update: 2024-04-27 11:38:05 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;