Created
May 5, 2017 13:29
-
-
Save thbighead/6a9c885082899ce54dfce88d4497cf47 to your computer and use it in GitHub Desktop.
Function to delete a folder and every folders and files inside of it
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function recurse_delete($path) | |
{ | |
if (is_dir($path) === true) | |
{ | |
$files = array_diff(scandir($path), array('.', '..')); | |
foreach ($files as $file) | |
{ | |
recurse_delete(realpath($path) . '/' . $file); | |
} | |
return rmdir($path); | |
} | |
else if (is_file($path) === true) | |
{ | |
return unlink($path); | |
} | |
return false; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment