清除缓存文件 php

/*清除缓存*/
    public function deldir($dir) 
    {      
        $dh = opendir($dir);  
        while ($file = readdir($dh)) 
        {  
            if($file != "." && $file!="..") 
            {  
                $fullpath = $dir."/".$file;  
                if(!is_dir($fullpath)) 
                {  
                    unlink($fullpath);  
                }
                else 
                {  
                    $this->deldir($fullpath);  
                }  
            }  
        }  
        closedir($dh);    
        if(rmdir($dir)) 
        {  
            return true;  
        }
        else 
        {  
            return false;  
        }  
    }

你可能感兴趣的:(php,mysql,php)