Advertisement
krot

Удаление директории со всем содержимым

Dec 29th, 2016
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.45 KB | None | 0 0
  1. function dirDel ($dir)
  2. {
  3.     $d=opendir($dir);
  4.     while(($entry=readdir($d))!==false)
  5.     {
  6.         if ($entry != "." && $entry != "..")
  7.         {
  8.             if (is_dir($dir."/".$entry))
  9.             {
  10.                 dirDel($dir."/".$entry);
  11.             }
  12.             else
  13.             {
  14.                 unlink ($dir."/".$entry);
  15.             }
  16.         }
  17.     }
  18.     closedir($d);
  19.     rmdir ($dir);
  20. }
  21.  or
  22. system("rm -rf directory")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement