sagephp/ini

Ini file manipulation. supports sections and comments

dev-master 2013-11-15 21:30 UTC

This package is not auto-updated.

Last update: 2024-04-22 22:47:16 UTC


README

This component reads and writes ini files properly. unlike php functions the values are not automagically converted (Off to 0, etc)

Features

The features you would expect to work with ini files.

It also preserves comments both line comments and after the value, so both

; line comment
key = value ; bla bla

will be preserved

Installation

composer.phar require sage-php/ini dev-master

Usage

use SagePHP\Component\Parser\Ini\Ini as IniParser;

$ini = new IniParser(file_get_contents('/path/to/file'));

if ($ini->hasSection('php')) {
    echo 'php section found';
}

if ($ini->hasKey('version', 'php')) {
    echo 'php version:' . $ini-get('version', 'php');
}

$ini->set($key = 'bar', $value = 'zed', $section = 'section', $comment = 'just a test');

$ini->remove($key = 'bar', $section = 'section');

file_put_contents('/path/to/file', $ini);