<完整PHP文件系統參考
定義和用法
的parse_ini_file()函數解析結構(ini)文件,並在陣列中返回它的設置。
句法
parse_ini_file(file,process_sections)
參數 | 描述 |
---|---|
file | 需要。 指定ini文件檢查 |
process_sections | 可選的。 如果設置為TRUE,則返回與部分名稱和設置多維數組包含在內。 默認為FALSE |
提示和注意
Tip:該功能可用於自己的應用程序的配置文件讀取,並有無關php.ini文件。
Note:以下保留字不能作為INI文件鍵:空,是的,沒有,真,假。 此外,也有不能在按鍵中使用一些保留字符: {}|&~![()
實施例1
目錄"test.ini"
[names]
me = Robert
you = Peter
[urls]
first = "http://www.example.com"
second = "http://www.w3ii.com"
PHP代碼:
<?php
print_r(parse_ini_file("test.ini"));
?>
代碼的輸出將是:
Array
(
[me] => Robert
[you] => Peter
[first] => http://www.example.com
[second] => http://www.w3ii.com
)
實施例2
目錄"test.ini"
[names]
me = Robert
you = Peter
[urls]
first = "http://www.example.com"
second = "http://www.w3ii.com"
PHP代碼(with process_sections set to true)
<?php
print_r(parse_ini_file("test.ini",true));
?>
代碼的輸出將是:
Array
(
[names] => Array
(
[me] => Robert
[you] => Peter
)
[urls] => Array
(
[first] => http://www.example.com
[second] => http://www.w3ii.com
)
)
<完整PHP文件系統參考