1. 程式人生 > >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 {
            deldir($fullpath);
         }
      }
   }
 
   closedir($dh);
   //刪除當前資料夾:
   if(rmdir($dir)) {
      return true;
   } else {
      return false;
   }
}