php程式碼刪除非空目錄的方法:1、建立一個PHP範例檔案;2、設定檔編碼為utf8;3、透過遞歸函數實作刪除非空目錄即可,其程式碼如「function deldir ($dir){if(file_exists($dir)){$files=scandir($dir);foreach($files as $file){...}}」。
本教學操作環境:windows7系統、PHP8.1版、Dell G3電腦。
php程式碼怎麼刪除非空目錄?
程式碼如下:
<?php header("Content-type: text/html; charset=utf-8"); $dir='mydir'; function deldir($dir){ if(file_exists($dir)){ $files=scandir($dir); foreach($files as $file){ if($file!='.' && $file!='..'){ $path=$dir.'/'.$file; if(is_dir($path)){ deldir($path); }else{ unlink($path); } } } rmdir($dir); return true; }else{ return false; } } if(deldir($dir)){ echo "目录删除成功!"; }else{ echo "没有目录!"; }
php的非空目錄刪除,其實是用遞迴函數實作的,php沒有直接刪除非空目錄的函式。
推薦學習:《PHP影片教學》
以上是php程式碼怎麼刪除非空目錄的詳細內容。更多資訊請關注PHP中文網其他相關文章!