删除包含嵌套文件的目录
问:我尝试使用 rmdir() 删除目录,但如果目录失败,则会失败包含文件。如何删除目录及其所有内容?
答:删除目录及其所有文件有两种方法:
function deleteDir(string $dirPath): void { if (! is_dir($dirPath)) { throw new InvalidArgumentException("$dirPath must be a directory"); } if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') { $dirPath .= '/'; } $files = glob($dirPath . '*', GLOB_MARK); foreach ($files as $file) { if (is_dir($file)) { deleteDir($file); } else { unlink($file); } } rmdir($dirPath); }
function removeDir(string $dir): void { $it = new RecursiveDirectoryIterator($dir, RecursiveDirectoryIterator::SKIP_DOTS); $files = new RecursiveIteratorIterator($it, RecursiveIteratorIterator::CHILD_FIRST); foreach($files as $file) { if ($file->isDir()){ rmdir($file->getPathname()); } else { unlink($file->getPathname()); } } rmdir($dir); }
这两种方法都会有效地删除包含所有内容的目录它的文件和子目录。
以上是如何在 PHP 中删除目录及其内容?的详细内容。更多信息请关注PHP中文网其他相关文章!