分类 PHP 下的文章
php删除文件夹及其文件夹下所有文件
先清空文件夹内容,然后删除 function deldir($dir) {$dh=opendir($dir);while ($file=readdir($dh)) {if($file!="." && $file!="..") {$fullpath=$dir."/".$file;if(!is_dir($fullpath)) {unlink($fullpath);} else {...
PHP一个小巧的缓存类
功能很简单,就是缓存整个页面,可以设定缓存时间,可以缓存特定的URL,例如:test.php?id=12,当目标文件更新时,如test.php,缓存文件也会更新,即使仍处于缓存期内。<?phpclass cache{var $cache_dir = './cache/';//This is the directory where the cache files will...