欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php定义一个递归函数用于删除整个目录

程序员文章站 2022-05-09 08:35:06
...
  1. if ($dh = @opendir($dir)) {
  2. while (($file = readdir ($dh)) != false) {
  3. if (($file == ".") || ($file == "..")) continue;
  4. if (is_dir($dir . '/' . $file))
  5. delete_directory($dir . '/' . $file);
  6. else
  7. unlink($dir . '/' . $file);
  8. }
  9. @closedir($dh);
  10. rmdir($dir);
  11. }
  12. }
  13. $dir = "./fakeDir";
  14. delete_directory($dir);
  15. ?>
复制代码

php