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 . '/' . $file)) delete_directory($dir . '/' . $file); else unlink($dir . '/' . $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!