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递归删除缓存文件的主要内容,如果未能解决你的问题,请参考以下文章

php 递归删除文件夹

PHP 递归删除目录中文件

php递归删除文件夹

PHP 使用php删除递归特定文件夹(目录)

php 在Yoast SEO中更改或删除OpenGraph输出的代码片段。此代码中有多个代码段。

php学习笔记:利用递归实现删除文件目录