PHP glob() 函数
实例
返回与指定模式匹配的文件名或目录数组:
<?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
)
定义和用法
glob() 函数返回匹配指定模式的文件名或目录。
该函数返回一个包含有匹配文件 / 目录的数组。如果出错返回 false。
语法
glob(pattern, flags)
参数值
参数 | 描述 |
---|---|
pattern | 必需。规定检索模式。 |
flags |
可选。规定特殊的设定。
注释:GLOB_ERR 是 PHP 5.1 添加的。 |
技术细节
返回值: | 与模式匹配的文件/目录数组,失败时为 FALSE |
---|---|
PHP 版本: | 4.3+ |
PHP 更新日志: | PHP 5.1: GLOB_ERR 值添加到 flags 参数 |
更多实例
实例
Return an array of filenames or directories that matches the specified pattern:
<?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
)