Skip to content

Instantly share code, notes, and snippets.

@alphp
Last active August 27, 2018 04:12
Show Gist options
  • Save alphp/328b407ccfa25f48c6b12e1e7013fdad to your computer and use it in GitHub Desktop.
Save alphp/328b407ccfa25f48c6b12e1e7013fdad to your computer and use it in GitHub Desktop.
Remove directory (PHP)
<?php
function rd ($path) {
if (is_file($path)) {
unlink($path);
} else {
array_map('rd', glob($path . DIRECTORY_SEPARATOR . '*'));
rmdir($path);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment