Skip to content

Instantly share code, notes, and snippets.

@iredun
Created October 29, 2015 07:26
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 iredun/3a0f8fe81a7bfe8b5072 to your computer and use it in GitHub Desktop.
Save iredun/3a0f8fe81a7bfe8b5072 to your computer and use it in GitHub Desktop.
Функция для удаления директорий с вложенными файлами, возвращает 1 если удаление прошло успешно.
<?
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