├── .gitattributes ├── .gitignore ├── INI.class.php ├── README.md ├── config.ini └── example.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjanjic/PHP_INI_Read_Write/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjanjic/PHP_INI_Read_Write/HEAD/.gitignore -------------------------------------------------------------------------------- /INI.class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjanjic/PHP_INI_Read_Write/HEAD/INI.class.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjanjic/PHP_INI_Read_Write/HEAD/README.md -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjanjic/PHP_INI_Read_Write/HEAD/config.ini -------------------------------------------------------------------------------- /example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjanjic/PHP_INI_Read_Write/HEAD/example.php --------------------------------------------------------------------------------