您现在的位置是:网站首页> 编程资料编程资料
php删除文件夹及其文件夹下所有文件_资源网
2023-12-05
169人已围观
简介 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);
}
}
}
closedir($dh);
if(rmdir($dir)) {
return true;
} else {
return false;
}
}