parse_ini_file() 函數解析一個設定檔(ini 檔),並以陣列的形式傳回其中的設定。
parse_ini_file(file,process_sections)
參數 | 描述 |
---|---|
file | 必需。規定要檢查的ini 檔。 |
process_sections | 可選。如果設定為TRUE,則傳回一個多維數組,包括了設定檔中每一節的名稱和設定。預設是FALSE。 |
提示:本函數可以用來讀取您自己的應用程式的設定文件,與php.ini 檔案沒有關係。
註:有些保留字不能作為ini 檔案中的鍵名,包括:null、yes、no、true 和false。字元{}|&~![()" 也不能用在鍵名的任何地方。
"test.ini" 的內容:
[names]me = Robertyou = Peter[urls]first = "http://www.example.com"second = "http://www.w3cschool.cc"
PHP 程式碼:
<?phpprint_r(parse_ini_file("test.ini"));?>
上面的程式碼將輸出:
Array([me] => Robert[you] => Peter[first] => http://www.example.com[second] => http://www.w3cschool.cc)
"test.ini" 的內容:
[names]me = Robertyou = Peter[urls]first = "http://www.example.com"second = "http://www.w3cschool.cc"
PHP 程式碼(process_sections 設定為true):
<?phpprint_r(parse_ini_file("test.ini",true));?>
上面的程式碼將輸出:
Array([names] => Array ( [me] => Robert [you] => Peter )[urls] => Array ( [first] => http://www.example.com [second] => http: //www.w3cschool.cc ))