php递归遍历目录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php递归遍历目录相关的知识,希望对你有一定的参考价值。
其实很简单,就写了一个函数,没啥好说的直接上代码了
public function openDirectory($path) { $dir = dir($path); while (false != ($entry = $dir->read())) { if ($entry != "." && $entry != "..") { if (is_dir($path . DIRECTORY_SEPARATOR . $entry)) { $this->openDirectory($path . DIRECTORY_SEPARATOR . $entry); } else { //这里做文件的操作 } } } }
以上是关于php递归遍历目录的主要内容,如果未能解决你的问题,请参考以下文章