php刪除目錄以及目錄下檔案的方法:
#首先新建一個php檔案」test.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; } } ?>
然後在改test.php同級目錄下建立資料夾」test“,同時在其目錄下建立子檔案或目錄。
j接著在”test.php"加入程式碼來刪除檔案:
function deldir(test);
最後查看」test「目錄是否已經刪除。
相關參考:php中文網
#以上是php如何刪除目錄以及目錄下的文件的詳細內容。更多資訊請關注PHP中文網其他相關文章!