Home  >  Article  >  Backend Development  >  Several methods of php folder traversal

Several methods of php folder traversal

小云云
小云云Original
2018-03-01 13:20:211685browse

This article mainly shares with you several methods of php folder traversal, hoping to help everyone.

Function

<span style="font-size: 14px;">function dirTree(){<br>    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));<br>            }<br>        }<br>        closedir($dir);        return $files;<br>}<br></span>

Directory Class

<span style="font-size: 14px;">function dirTree(){<br>    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));<br>            }<br>        }        $dir_h->close();        return $files;<br>}<br></span>

Iterator

<span style="font-size: 14px;">function dirTree(){<br>    if(!is_dir($path)) return [];    $files = [];        $dir = new \DirectoryIterator($path);        foreach ($dir as $key => $file){            if($file->getFilename() == '.' || $file->getFilename() == '..'){                continue;<br>            }            $files[] = $file->getPathname();            if($file->isDir()){                $files = array_merge($files, $this->ergodicDir5($file->getPathname()));<br>            }<br>        }        return $files;<br>}<br></span>

Related recommendations:

PHP folder traversal, image compression at equal proportions

The above is the detailed content of Several methods of php folder traversal. For more information, please follow other related articles on the PHP Chinese website!

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