Skip to content

Instantly share code, notes, and snippets.

@ConnerAiken
Created November 10, 2016 19:24
Show Gist options
  • Save ConnerAiken/236273cdefaedbc1d1c19696dbfebfd2 to your computer and use it in GitHub Desktop.
Save ConnerAiken/236273cdefaedbc1d1c19696dbfebfd2 to your computer and use it in GitHub Desktop.
/* Deletes files recursively on windows and linux */
function delTree($dir) {
$files = array_diff(scandir($dir), array('.','..'));
foreach ($files as $file) {
(is_dir("$dir/$file")) ? delTree("$dir/$file") : unlink("$dir/$file");
}
return rmdir($dir);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment