php递归删除缓存文件
Posted 白了又了白
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php递归删除缓存文件相关的知识,希望对你有一定的参考价值。
/** * 递归删除缓存文件 * @param $dir 缓存文件路径 */ public function delFileByDir($dir) { $dh = opendir($dir); while ($file = readdir($dh)) { if ($file != "." && $file != "..") { $fullpath = $dir . "/" . $file; if (is_dir($fullpath)) { $this->delFileByDir($fullpath); } else { unlink($fullpath); } } } closedir($dh); }
以上是关于php递归删除缓存文件的主要内容,如果未能解决你的问题,请参考以下文章