这篇文章主要为大家详细介绍了php 通过glob查找指定文件的简单示例,具有一定的参考价值,可以用来参考一下。
php通过glob查找指定的文件,感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
/**
* 通过glob查找指定的文件
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
$dir = './';
foreach(glob($dir.'*.txt') as $file) {
print $file . "\n";
}
/* returns:
./dummy.txt
./foo.txt
./ideas.txt
./robots.txt
./scite.txt
*/
/*
** other examples:
*/
// also possible:
$files = glob('*.*');
sort($files);
// This shows how to use the GLOB_BRACE flag:
$images = glob("images/{*.jpg,*.gif,*.png}", GLOB_BRACE);
print_r($images);
/* Valid flags:
GLOB_MARK
GLOB_NOSORT
GLOB_NOCHECK
GLOB_NOESCAPE
GLOB_BRACE
GLOB_ONLYDIR
GLOB_ERR
see PHP.net manual for more info
*/
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/344-0.html
注:关于php 通过glob查找指定文件的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:glob,查找文件
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。