Home  >  Article  >  Backend Development  >  PHP高效目录遍历方法,不用递归,不用DirectoryIterator

PHP高效目录遍历方法,不用递归,不用DirectoryIterator

WBOY
WBOYOriginal
2016-06-20 13:02:51931browse

PHP高效目录遍历,不用递归,不用DirectoryIterator

补充:传入的参数 $dir 为要遍历目录的绝对路径,

/** 快速查找目录、文件 */
public static function find($dir)
{
    if(!is_dir($dir)) # 如果$dir变量不是一个目录,直接返回false
        return false;
    $dirs[] = '';     # 用于记录目录
    $files = array(); # 用于记录文件
    while(list($k,$path)=each($dirs))
    {
        $absDirPath = "$dir/$path";     # 当前要遍历的目录的绝对路径
        $handle = opendir($absDirPath); # 打开目录句柄
        readdir($handle);               # 先调用两次 readdir() 过滤 . 和 ..
        readdir($handle);               # 避免在 while 循环中 if 判断
        while(false !== $item=readdir($handle))
        {
            $relPath = "$path/$item";   # 子项目相对路径
            $absPath = "$dir/$relPath"; # 子项目绝对路径
            if(is_dir($absPath))        # 如果是一个目录,则存入到数组 $dirs
                $dirs[] = $relPath;
            else                        # 否则是一个文件,则存入到数组 $files
                $files[] = $relPath;
        }
        closedir($handle); # 关闭目录句柄
    }
    return array($dirs,$files);
}


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn