PHP parse_ini_file() 函數(shù)
PHP parse_ini_file() 函數(shù)

定義和用法
parse_ini_file() 函數(shù)解析一個配置文件(ini 文件),并以數(shù)組的形式返回其中的設(shè)置。
語法
parse_ini_file(file,process_sections)
參數(shù) | 描述 |
---|---|
file | 必需。規(guī)定要檢查的 ini 文件。 |
process_sections | 可選。如果設(shè)置為 TRUE,則返回一個多維數(shù)組,包括了配置文件中每一節(jié)的名稱和設(shè)置。默認是 FALSE。 |
提示和注釋
提示:本函數(shù)可以用來讀取您自己的應(yīng)用程序的配置文件,與 php.ini 文件沒有關(guān)系。
注釋:有些保留字不能作為 ini 文件中的鍵名,包括:null、yes、no、true 和 false。字符 {}|&~![()" 也不能用在鍵名的任何地方。
實例 1
"test.ini" 的內(nèi)容:
[names]
me = Robert
you = Peter
[urls]
first = "http://www.example.com"
second = "https://www.runoob.com"
me = Robert
you = Peter
[urls]
first = "http://www.example.com"
second = "https://www.runoob.com"
PHP 代碼:
<?php
print_r(parse_ini_file("test.ini"));
?>
print_r(parse_ini_file("test.ini"));
?>
上面的代碼將輸出:
Array
(
[me] => Robert
[you] => Peter
[first] => http://www.example.com
[second] => https://www.runoob.com
)
(
[me] => Robert
[you] => Peter
[first] => http://www.example.com
[second] => https://www.runoob.com
)
實例 2
"test.ini" 的內(nèi)容:
[names]
me = Robert
you = Peter
[urls]
first = "http://www.example.com"
second = "http://www.w3cschool.cc"
me = Robert
you = Peter
[urls]
first = "http://www.example.com"
second = "http://www.w3cschool.cc"
PHP 代碼(process_sections 設(shè)置為 true):
<?php
print_r(parse_ini_file("test.ini",true));
?>
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.w3cschool.cc
)
)
(
[names] => Array
(
[me] => Robert
[you] => Peter
)
[urls] => Array
(
[first] => http://www.example.com
[second] => http://www.w3cschool.cc
)
)

相關(guān)文章
- PHP 教程
- PHP echo 和 print 語句
- PHP 數(shù)據(jù)類型
- PHP Switch 語句
- PHP 超級全局變量
- PHP $_GET 變量
- PHP array_change_key_case() 函數(shù)
- PHP array_diff_uassoc() 函數(shù)
- PHP array_diff_ukey() 函數(shù)
- PHP array_fill() 函數(shù)
- PHP array_key_last() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_search() 函數(shù)
- PHP arsort() 函數(shù)
- PHP in_array() 函數(shù)
- PHP natsort() 函數(shù)
- PHP pos() 函數(shù)
- PHP sort() 函數(shù)
- PHP cURL 函數(shù)
- PHP 5 Directory 函數(shù)