parse_ini_string()函數解析配置字串。該函數在成功時傳回設定的關聯數組。在失敗時返回FALSE。
parse_ini_string(file_path, process_sections)
#file_path − The ini file to be parsed.
#process_sections − If set to TRUE, you will get a multidimensional array with section names and settings included.
[names] one = Anne [urls] host1 = "https://www.example1.com"
輸出
<?php print_r(parse_ini_string("demo.ini")); ?>
#
以上是在PHP中的parse_ini_string()函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!