<完整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文件系統參考