<完全なPHPファイルシステムリファレンス
定義と使用法
glob()関数は、指定されたパターンに一致するファイル名またはディレクトリの配列を返します。
この関数は、失敗した場合に、ファイル/ディレクトリの配列、またはFALSEを返します。
構文
glob(pattern,flags)
パラメーター | 説明 |
---|---|
pattern | 必須。 検索するパターンを指定します。 |
flags | 任意。 特別な設定を指定します。 可能な値:
|
例1
<?php
print_r(glob("*.txt"));
?>
上記のコードの出力は次のようになります。
Array
(
[0] => target.txt
[1] => source.txt
[2] => test.txt
[3] => test2.txt
)
例2
<?php
print_r(glob("*.*"));
?>
上記のコードの出力は次のようになります。
Array
(
[0] => contacts.csv
[1] => default.php
[2] => target.txt
[3] => source.txt
[4] => tem1.tmp
[5] => test.htm
[6] => test.ini
[7] => test.php
[8] => test.txt
[9] => test2.txt
)
<完全なPHPファイルシステムリファレンス