Heim  >  Artikel  >  Backend-Entwicklung  >  php写的一个删除目录的函数

php写的一个删除目录的函数

WBOY
WBOYOriginal
2016-07-25 09:07:201012Durchsuche
  1. // ggarciaa at gmail dot com (04-July-2007 01:57)

  2. // I needed to empty a directory, but keeping it
  3. // so I slightly modified the contribution from
  4. // stefano at takys dot it (28-Dec-2005 11:57)
  5. // A short but powerfull recursive function
  6. // that works also if the dirs contain hidden files
  7. //
  8. // $dir = the target directory
  9. // $DeleteMe = if true delete also $dir, if false leave it alone
  10. function SureRemoveDir($dir, $DeleteMe) {

  11. if(!$dh = @opendir($dir)) return;
  12. while (false !== ($obj = readdir($dh))) {
  13. if($obj==’.’ || $obj==’..’) continue;
  14. if (!@unlink($dir.’/’.$obj)) SureRemoveDir($dir.’/’.$obj, true);
  15. }
  16. closedir($dh);

  17. if ($DeleteMe){
  18. @rmdir($dir);
  19. }
  20. }
  21. //SureRemoveDir(‘EmptyMe’, false);

  22. //SureRemoveDir(‘RemoveMe’, true);
  23. ?>
复制代码

>>>



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn