php_ini_scanned_files
(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)
php_ini_scanned_files — 追加の ini ディレクトリにある .ini ファイルのリストを取得する
説明
php_ini_scanned_files()は、php.iniをパースした 後で、設定ファイルのリストをカンマ区切りで返します。 ファイルを探すディレクトリは、コンパイル時のオプションで指定します。 また、実行時に環境変数で指定することもできます。詳細は インストールガイド を参照ください。
戻り値のファイル名は、フルパス形式となります。
パラメータ
この関数にはパラメータはありません。
戻り値
成功すると、.iniファイルをカンマ区切りにした文字列が返されます。
--with-config-file-scan-dir
がセットされておらず、かつ環境変数 PHP_INI_SCAN_DIR
も設定されていない場合は
false
を返します。指定されたディレクトリが空であれば、
空文字列が返されます。ファイルが認識できないものであれば、
そのファイルは文字列には含まれますが同時にPHPがエラーを起こします。
このエラーはコンパイルの時と、php_ini_scanned_files()
関数を使用したときの両方で発生します。
例
例1 返される ini ファイルを一覧する例
<?php
if ($filelist = php_ini_scanned_files()) {
if (strlen($filelist) > 0) {
$files = explode(',', $filelist);
foreach ($files as $file) {
echo "<li>" . trim($file) . "</li>\n";
}
}
}
?>
参考
- ini_set() - 設定オプションの値を設定する
- phpinfo() - PHP の設定情報を出力する
- php_ini_loaded_file() - 読み込まれた php.ini ファイルのパスを取得する
+add a note
User Contributed Notes 1 note
atesin () gmail ! com ¶
5 years ago
<warning>
until i load more .ini files from <php-dir>/php.d/ as listed in phpinfo() (sections "Scan this dir for additional .ini files" and "Additional .ini files parsed"), php_ini_scanned_files() returns me NOTHING!
then i realized my php binary was not compiled with the "--with-config-file-scan-dir" option as listed in phpinfo() (section "Configure Command")
then i remembered the additional .ini files dir was set through the "PHP_INI_SCAN_DIR" system variable (new since php 5.2.0, see https://php.net/manual/en/configuration.file.php#configuration.file.scan)
until confusing and annoying, is the documented behavior... too bad now i don't know how to get the additional ini files purely with php functions (except "shell_exec()" maybe?)
</warning>
↑ and ↓ to navigate •
Enter to select •
Esc to close
Press Enter without
selection to search using Google