Skip to content

Instantly share code, notes, and snippets.

@n3tr
Created February 7, 2013 15:44
Show Gist options
  • Save n3tr/4731741 to your computer and use it in GitHub Desktop.
Save n3tr/4731741 to your computer and use it in GitHub Desktop.
<?php
function rrmdir($dir) {
if (is_dir($dir)) {
$objects = scandir($dir);
foreach ($objects as $object) {
if ($object != "." && $object != "..") {
if (filetype($dir."/".$object) == "dir") rrmdir($dir."/".$object); else unlink($dir."/".$object);
}
}
reset($objects);
rmdir($dir);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment