主页 > 编程资料 > PHP >
发布时间:2016-08-03 作者:网络 阅读:150次
publicfunction cache_clear(){
        $this->deldir(TEMP_PATH);
}
function deldir($dir){
        $dh = opendir($dir);
while($file = readdir($dh)){
if($file !="."&& $file !=".."){
                $fullpath = $dir ."/". $file;
if(!is_dir($fullpath)){
                    unlink($fullpath);
}else{
                    deldir($fullpath);
}
}
}
}

使用方法,直接用调用cache_clear方法即可。

关键字词: