PHP glob()
函数是根据指定的模式返回返回符合模式的文件名或者目录
语法
glob(pattern,flags)
参数
参数 | 描述 |
---|---|
pattern | 必需。指定匹配的模式。 |
flags | 可选。 可能的值: |
返回值
成功返回符合匹配模式的数组。如果失败则返回 FALSE。
例子
下面介绍一些例子了解该函数的使用方法。
例1
返回后缀为html的文件的数组
<?php
print_r(glob("*.html"));
?>
输出:
Array
(
[0] => index.html
[1] => index2.html
)
(
[0] => index.html
[1] => index2.html
)
例2
返回所有文件的数组
<?php
print_r(glob("*.*"));
?>
Array
(
[0] => index.html
[1] => index.php
[2] => index2.html
[3] => test.csv
[4] => test.txt
)
(
[0] => index.html
[1] => index.php
[2] => index2.html
[3] => test.csv
[4] => test.txt
)