PHP glob() 函數(shù)
PHP glob() 函數(shù)

定義和用法
glob() 函數(shù)返回一個(gè)包含匹配指定模式的文件名或目錄的數(shù)組。
該函數(shù)返回一個(gè)包含有匹配文件/目錄的數(shù)組。如果失敗則返回 FALSE。
語法
glob(pattern,flags)
參數(shù) | 描述 |
---|---|
pattern | 必需。規(guī)定檢索模式。 |
flags | 可選。規(guī)定特殊的設(shè)定。 可能的值:
|
實(shí)例 1
<?php
print_r(glob("*.txt"));
?>
print_r(glob("*.txt"));
?>
上面的代碼將輸出:
Array
(
[0] => target.txt
[1] => source.txt
[2] => test.txt
[3] => test2.txt
)
(
[0] => target.txt
[1] => source.txt
[2] => test.txt
[3] => test2.txt
)
實(shí)例 2
<?php
print_r(glob("*.*"));
?>
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
)
(
[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
)

相關(guān)文章
- PHP 簡(jiǎn)介
- PHP 超級(jí)全局變量
- PHP 函數(shù)
- PHP 魔術(shù)常量
- PHP 命名空間 namespace
- PHP $_GET 變量
- PHP date() 函數(shù)
- PHP 文件處理
- PHP 發(fā)送電子郵件
- PHP 異常處理
- PHP JSON
- PHP array_diff() 函數(shù)
- PHP array_filter() 函數(shù)
- PHP array_flip() 函數(shù)
- PHP array_map() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP each() 函數(shù)
- PHP uksort() 函數(shù)
- PHP 5 Array 函數(shù)
- PHP 5 Filesystem 函數(shù)