Home  >  Article  >  Backend Development  >  Briefly describe the recursive function of PHP to delete the entire directory

Briefly describe the recursive function of PHP to delete the entire directory

墨辰丷
墨辰丷Original
2018-06-12 14:56:061365browse

This article mainly introduces the recursive function of PHP to delete the entire directory, involving PHP recursive algorithm and directory operation skills. Friends in need can refer to it

The example of this article describes the PHP implementation for deleting the entire directory. recursive function.

The specific implementation method is as follows:

<?php
function delete_directory($dir) {
   if ($dh = @opendir($dir)) {
     while (($file = readdir ($dh)) != false) {
       if (($file == ".") || ($file == "..")) continue;
        if (is_dir($dir . &#39;/&#39; . $file))
          delete_directory($dir . &#39;/&#39; . $file);
        else
          unlink($dir . &#39;/&#39; . $file);
     }
     @closedir($dh);
     rmdir($dir);
   }
}
$dir = "./fakeDir";
delete_directory($dir);
?>

Summary: The above is the entire content of this article, I hope it will be helpful to everyone's learning.

Related recommendations:

A brief description of the decorator pattern in PHP design patterns

A brief description of the PHP date function and obtaining the set time Method

Definition and usage of is_file() function in PHP

The above is the detailed content of Briefly describe the recursive function of PHP to delete the entire directory. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn