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

我的破电脑改造计划,Day 2

装好了系统,接下来就要搭建WEB环境了。由于是小白,所以选择了LNMP一键安装包。 http://lnmp.org/ http://wdlinux.cn/lanmp/ http://www.centos.bz/lnmp/ 以上是网上搜到的几种,用的最多的还是第一个。我也选择了第一个,安装方法很简单 wget -c http://soft.vpser.net/lnmp/lnmp0.9-full.tar.gz tar zxvf lnmp0.9-full.tar.gz cd lnmp0.9-full/ ./ubuntu.sh 2>&1 | tee lnmp.log 因为lubuntu属于ubuntu所以用ubuntu.sh。centos ... read more