PHP删除文件夹及其文件时间:2023-03-09 21:47:24 <?php function deletedir($path){ $openpath = opendir($path); while ($f = readdir($openpath)){ $file = $path.'/'.$f; if($f != '.' && $f != '..'){ if(is_dir($file)){ deletedir($file); }else{ unlink($file); } } } closedir($openpath); rmdir($path); } ?>