PHP parse_ini_file() 函數(shù)

2018-11-21 16:12 更新

PHP parse_ini_file() 函數(shù)


PHP Filesystem 參考手冊(cè) 完整的 PHP Filesystem 參考手冊(cè)

定義和用法

parse_ini_file() 函數(shù)解析一個(gè)配置文件(ini 文件),并以數(shù)組的形式返回其中的設(shè)置。

語法

parse_ini_file(file,process_sections)

參數(shù) 描述
file 必需。規(guī)定要檢查的 ini 文件。
process_sections 可選。如果設(shè)置為 TRUE,則返回一個(gè)多維數(shù)組,包括了配置文件中每一節(jié)的名稱和設(shè)置。默認(rèn)是 FALSE。


提示和注釋

提示:本函數(shù)可以用來讀取您自己的應(yīng)用程序的配置文件,與 php.ini 文件沒有關(guān)系。

注釋:有些保留字不能作為 ini 文件中的鍵名,包括:null、yes、no、true 和 false。字符 {}|&~![()" 也不能用在鍵名的任何地方。


實(shí)例 1

"test.ini" 的內(nèi)容:

[names]
me = Robert
you = Peter

[urls]
first = "http://www.example.com"
second = "http://o2fo.com"

PHP 代碼:

<?php
print_r(parse_ini_file("test.ini"));
?>

上面的代碼將輸出:

Array
(
[me] => Robert
[you] => Peter
[first] => http://www.example.com
[second] => http://o2fo.com
)


實(shí)例 2

"test.ini" 的內(nèi)容:

[names]
me = Robert
you = Peter

[urls]
first = "http://www.example.com"
second = "http://o2fo.com"

PHP 代碼(process_sections 設(shè)置為 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://o2fo.com
)
)


PHP Filesystem 參考手冊(cè) 完整的 PHP Filesystem 參考手冊(cè)
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)