SECTION_RE
SECTION_RE
Expresión regular PCRE que define el formato de una línea que comienza una sección .
Implementa toda la funcionalidad para trabajar con archivos .ini.
INIFile Handler
Author: MO
Extended for Vovoid Euphoria by Jonatan Wallmander
Modified by XGAP
Some Examples:
$ini = new INIFile("./ini.ini");
Read entire group in an associative array
$grp = $ini->read_group("MAIN");
//prints the variables in the group
if ($grp)
for(reset($grp); $key=key($grp); next($grp))
{
echo "GROUP ".$key."=".$grp[$key]."<br>";
}
Set a variable to a value
$ini->set_var("NEW","USER","JOHN");
Save the file
$ini->save_data();