PHP删除gzip文件缓存

网上很多用php实现gz压缩输出js&css的文章,都把压缩文件存到一个文件夹里,可是却没有介绍手动删缓存的方法,每次FTP进去太麻烦了,所以就摸索着写了一个方法。 删除文件的php代码网上有 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); } } } } 要做点安全措施。。。不能让所有人都删,得只能是登录的管理员才能删 if ( is_user_logged_in() ) { if(current_user_can('level_10')){ deldir('/home/ ... read more