/**
* thinkphp删除目录和目录下所有文件和文件夹函数
* @param str $path 要删除的文件路径或文件夹路径
* @param int $delDir 是否删除文件夹,1或true删除文件夹,0或false则只删除文件保留文件夹(包含子文件夹)
* @return bool 返回删除状态,true删除成功,false删除失败
*/
function delDirAndFile($path, $delDir = FALSE) {
$handle = opendir($path);
if ($handle) {
while (false !== ( $item = readdir($handle) )) {
if ($item != "." && $item != "..")
is_dir("$path/$item") ? delDirAndFile("$path/$item", $delDir) : unlink("$path/$item");
}
closedir($handle);
if ($delDir)
return rmdir($path);
}else {
if (file_exists($path)) {
return unlink($path);
} else {
return FALSE;
}
}
}