vazo
2022-08-13 13:25:55 +08:00
#3 代码有误,更正如下
<?
function deldir($dir) {
//删除目录下的文件
$dh = opendir($dir);
while ($file = readdir($dh)) {
if ($file != "." && $file != "..") {
$fullpath = $dir . "/" . $file;
if (!is_dir($fullpath)) {
if ($fullpath == "update/a.php") { //增加一个条件排除 update 下的 a.php
} else {
unlink($fullpath);
}
} else {
deldir($fullpath);
}
}
}
closedir($dh);
//删除当前文件夹
if (rmdir($dir)) {
return true;
} else {
return false;
}
}
deldir('update') //需要清空操作的文件夹
?>