parse_ini_file wird zum Parsen einer Konfigurationsdatei wie config.ini [host] verwendet.
hostname
=
localhost
dbname
= datebase
username = root
passwort = root
[smatyconf]
smarty_templates_dir='templates_dir'
smarty_config_dir ='config_dir'
array parse_ini_file ( string filename [, bool process_sections ] )
liest die INI-Datei und speichertsie
als Array.
Wenn der Parameter proprocess_sections wahr ist, wird ein Array oder
mehr zurückgegeben.
Array(
[hostname ]= >localhost
[dbname] => datebase
[username] => root
[password] = >root
[smarty_templates_dir] => 'templates_dir'
[smarty_config_dir] => 'config_dir'
)