Skip to content

Instantly share code, notes, and snippets.

@eiannone
Created April 24, 2017 22:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eiannone/16513501c4dfb4a0e8f91831111fcf9b to your computer and use it in GitHub Desktop.
Save eiannone/16513501c4dfb4a0e8f91831111fcf9b to your computer and use it in GitHub Desktop.
deltree e scansione file
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