码迷,mamicode.com
首页 > Web开发 > 详细

php递归删除缓存文件

时间:2020-04-16 14:53:07      阅读:54      评论:0      收藏:0      [点我收藏+]

标签:bsp   nbsp   code   close   UNC   class   递归   open   删除   

/**
     * 递归删除缓存文件
     * @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递归删除缓存文件

标签:bsp   nbsp   code   close   UNC   class   递归   open   删除   

原文地址:https://www.cnblogs.com/zhangxilong/p/12712674.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!