php刪除資料夾內容的方法:先建立一個PHP範例檔案;然後定義一個deldir方法;接著透過opendir函式開啟檔案目錄;最後透過遞歸的方法刪除目錄下的檔案以及空資料夾即可。
推薦:《PHP影片教學》
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; } }
以上是php如何刪除資料夾內容的詳細內容。更多資訊請關注PHP中文網其他相關文章!