Skip to content

badbreze/simple-ini

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Simple Ini Files Utility

Total Downloads

The SimpleIni Utility is a small INI file tool for read/write values inside INI file easy.

Installation

Using Composer

composer require badbreze/simple-ini

Example

use IniUtil\SimpleIni;

require_once "vendor/autoload.php";

$ini = new SimpleIni(__DIR__.'/helloworld.ini');

$hello = $ini->getVariable('hello');

echo($hello);
//result: world

In this example we have a file called "helloworld.ini" with the following content.

hello = world

@author Damian Gomez

Project Page

About

Simple Ini Manipulation Class for PHP

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages