Skip to content

Instantly share code, notes, and snippets.

@jlhg
Created November 13, 2014 15:05
Show Gist options
  • Save jlhg/ea178afe99170f5e9eb2 to your computer and use it in GitHub Desktop.
Save jlhg/ea178afe99170f5e9eb2 to your computer and use it in GitHub Desktop.
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