parse_ini_file()函数解析配置文件(ini)
parse_ini_file(file_path, process_sections)
file_path-要解析的ini文件。
process_sections-如果设置为TRUE,您将获得一个包含部分名称和设置的多维数组。
成功时,parse_ini_file()函数将设置作为关联数组返回。失败时返回FALSE。
假设我们的“ demo.ini”的内容是-
[names] one = Anne two = Katie three = Tom [urls] host1 = "https://www.example1.com" host2 = "https://www.example2.com"
<?php print_r(parse_ini_file("demo.ini")); ?>
输出结果
Array ( [one] => Anne [two] => Katie [three] => Tom [host1] => https://www.example1.com [host2] => https://www.example2.com )