function deldir($dir) {
//먼저 디렉터리의 파일을 삭제합니다.
$dh=opendir($dir);
while ($file=readdir($dh)) {
if($file!=". " && $file!="..") {
$fullpath=$dir."/".$file;
if(!is_dir($fullpath ) ) {
연결 해제($fullpath); }
}
}
closedir($dh);
// 현재 폴더 삭제:
if(rmdir($dir)) {
return true;
} else {
false 반환;
}
}
?>
위 내용은 PHP를 사용하여 폴더와 해당 폴더 아래의 모든 파일을 삭제하는 방법을 소개하고 있으며, PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.