這篇文章主要介紹了php中通過DirectoryIterator刪除整個(gè)目錄的方法,實(shí)例分析了php通過DirectoryIterator類操作目錄的技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下
本文實(shí)例講述了php中通過DirectoryIterator刪除整個(gè)目錄的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:
<?php
function cleanup_directory($dir) {
foreach (new DirectoryIterator($dir) as $file) {
if ($file->isDir()) {
if (! $file->isDot()) {
cleanup_directory($file->getPathname());
}
} else {
unlink($file->getPathname());
}
}
rmdir($dir);
}
?>
希望本文所述對大家的php程序設(shè)計(jì)有所幫助。
更多信息請查看IT技術(shù)專欄