Skip to content

Instantly share code, notes, and snippets.

@folmert
Last active August 29, 2015 14:21
Show Gist options
  • Save folmert/3390d1d687e186122b75 to your computer and use it in GitHub Desktop.
Save folmert/3390d1d687e186122b75 to your computer and use it in GitHub Desktop.
<?php
function delFolder($dirPath) {
foreach(new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dirPath, FilesystemIterator::SKIP_DOTS), RecursiveIteratorIterator::CHILD_FIRST) as $path) {
$path->isDir() ? rmdir($path->getPathname()) : unlink($path->getPathname());
}
rmdir($dirPath);
}
delFolder('demo');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment