您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息

几种php文件夹遍历的方法

2024/4/3 2:56:35发布11次查看
本文主要和大家分享几种php文件夹遍历的方法,希望能帮助到大家。函数function dirtree(){
   if(!is_dir($path)) return [];        $files = [];        $dir = opendir($path);        while($file = readdir($dir)) {            if($file == '.' || $file == '..') continue;            $new_path = trim($path, '/').'/'.trim($file, '/');            $files[] = $new_path;            if(is_dir($new_path)){                $files = array_merge($files, $this->ergodicdir2($new_path));
           }
       }
       closedir($dir);        return $files;
}

directory类function dirtree(){
   if(!is_dir($path)) return [];        $files = [];        $dir_h = dir($path);        while($file = $dir_h->read()){            if($file == '.' || $file == '..') continue;            $new_path = trim($path, '/').'/'.trim($file, '/');            $files[] = $new_path;            if(is_dir($new_path)){                $files = array_merge($files, $this->ergodicdir3($new_path));
           }
       }        $dir_h->close();        return $files;
}

迭代器function dirtree(){
   if(!is_dir($path)) return [];    $files = [];        $dir = new \directoryiterator($path);        foreach ($dir as $key => $file){            if($file->getfilename() == '.' || $file->getfilename() == '..'){                continue;
           }            $files[] = $file->getpathname();            if($file->isdir()){                $files = array_merge($files, $this->ergodicdir5($file->getpathname()));
           }
       }        return $files;
}

相关推荐:
php文件夹遍历,图片等比例压缩
以上就是几种php文件夹遍历的方法的详细内容。
该用户其它信息

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录 Product