Class FOFUtilsIniParser
A utility class to parse INI files. This monstrosity is only required because some impossibly misguided individuals who misrepresent themselves as hosts have disabled PHP's parse_ini_file() function for "security reasons". Apparently their blatant ignorance doesn't allow them to discern between the innocuous parse_ini_file and the _potentially_ dangerous ini_set functions, leading them to disable the former and let the latter enabled. In other words, THIS CLASS IS HERE TO FIX STUPID.
Package: FrameworkOnFramework\utils
Copyright: Copyright (C) 2010-2016 Nicholas K. Dionysopoulos / Akeeba Ltd. All rights reserved.
License: General Public License version 2 or later; see LICENSE.txt
Located at fof/utils/ini/parser.php
Copyright: Copyright (C) 2010-2016 Nicholas K. Dionysopoulos / Akeeba Ltd. All rights reserved.
License: General Public License version 2 or later; see LICENSE.txt
Located at fof/utils/ini/parser.php
Methods summary
public static
array
|
#
parse_ini_file( string $file, boolean $process_sections, mixed $rawdata = false )
Parse an INI file and return an associative array. |
public static
array
|
#
parse_ini_file_php( string $file, boolean $process_sections = false, boolean $rawdata = false )
A PHP based INI file parser. |