PHP parse_ini_file() 函數
定義和用法
parse_ini_file() 函數解析一個配置文件(ini 文件),並以數組的形式返回其中的設置。php
語法
parse_ini_file(file,process_sections)
參數 |
描述 |
file |
必需。規定要檢查的 ini 文件。 |
process_sections |
可選。若是設置爲 TRUE,則返回一個多維數組,包括了配置文件中每一節的名稱和設置。默認是 FALSE。 |
提示和註釋
提示:本函數能夠用來讀取您本身的應用程序的配置文件,與 php.ini 文件沒有關係。數組
註釋:有些保留字不能做爲 ini 文件中的鍵名,包括:null、yes、no、true 和 false。字符 {}|&~![()" 也不能用在鍵名的任何地方。函數
實例 1
"test.ini" 的內容:url
[names]
me = Robert
you = Peter
[urls]
first = "http://www.example.com"
second = "http://www.w3cschool.cc"
PHP 代碼:spa
<?php
print_r(parse_ini_file("test.ini"));
?>
上面的代碼將輸出:code
Array
(
[me] => Robert
[you] => Peter
[first] => http://www.example.com
[second] => http://www.w3cschool.cc
)
實例 2
"test.ini" 的內容:io
[names]
me = Robert
you = Peter
[urls]
first = "http://www.example.com"
second = "http://www.w3cschool.cc"
PHP 代碼(process_sections 設置爲 true):table
<?php
print_r(parse_ini_file("test.ini",true));
?>
上面的代碼將輸出:class
Array ( [names] => Array ( [me] => Robert [you] => Peter ) [urls] => Array ( [first] => http://www.example.com [second] => http://www.w3cschool.cc ) )