parse_ini_file(file,process_sections)//process_sections 为true 时为多维数组
"test.ini" 的内容:
[names]
me = Robert
you = Peter
[urls]
first = "http://www.example.com"
second = "http://www.w3school.com.cn"
PHP 代码:
<?php
print_r(parse_ini_file("test.ini"));
?>
输出:
Array
(
[me] => Robert
[you] => Peter
[first] => http://www.example.com
[second] => http://www.w3school.com.cn
)