parse_ini_file()函数可以解析配置(ini)文件,并以数组形式返回设置。
array parse_ini_file ( string $filename [, bool $process_sections = FALSE [, int $scanner_mode = INI_SCANNER_NORMAL ]] )
该函数可以加载文件名中指定的ini文件,并以关联数组的形式返回设置。ini文件的结构与php.ini的相同。
<?php print_r(parse_ini_file("/PhpProject/simple.ini")); ?>
输出结果
Array ( [me] => Adithya [you] => Jai [first] => [second] => https://www.google.com )
<?php print_r(parse_ini_file("/PhpProject/simple.ini", true)); ?>
输出结果
Array ( [names] => Array ( [me] => Adithya [you] => Jai ) [urls] => Array ( [first] => [second] => https://www.google.com ) )PHP Filesystem 参考手册