前端之家收集整理的这篇文章主要介绍了
PHP 遍历指定目录所有文件函数的简单示例(可指定文件类型),
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
对
PHP遍历指定目录下所有
文件函数,可指定
文件类型感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编两巴掌来看看吧!
/**
* 遍历指定目录下所有文件函数,可指定文件类型
*
* @param
* @arrange 网: jb51.cc
* 遍历获取目录下的指定类型的文件
* @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;
}
/*** 来自编程之家 jb51.cc(jb51.cc) ***/
原文链接:https://www.f2er.com/php/528632.html