这篇文章主要为大家详细介绍了PHP 遍历指定目录所有文件函数的简单示例(可指定文件类型),具有一定的参考价值,可以用来参考一下。
对PHP遍历指定目录下所有文件函数,可指定文件类型感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
/**
* 遍历指定目录下所有文件函数,可指定文件类型
*
* @param
* @arrange 五一二笔记网: www.q1010.com
* 遍历获取目录下的指定类型的文件
* @param $path
* @param array $files
* @return array
*/
function getfiles( $path , &$files = array() )
{
if ( !is_dir( $path ) ) return null;
$handle = opendir( $path );
while ( false !== ( $file = readdir( $handle ) ) ) {
if ( $file != '.' && $file != '..' ) {
$path2 = $path . '/' . $file;
if ( is_dir( $path2 ) ) {
getfiles( $path2 , $files );
} else {
if ( preg_match( "/\.(gif|jpeg|jpg|png|bmp)$/i" , $file ) ) {
$files[] = $path2;
}
}
}
}
return $files;
}
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/746-0.html
注:关于PHP 遍历指定目录所有文件函数的简单示例(可指定文件类型)的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:遍历文件
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。