<完全な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ファイルシステムリファレンス