Home >Backend Development >PHP Tutorial >PHP implements a recursive function for deleting an entire directory_PHP tutorial

PHP implements a recursive function for deleting an entire directory_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:03:39949browse

php implements the recursive function for deleting the entire directory

This article mainly introduces the php implementation of the recursive function for deleting the entire directory, involving php recursive algorithm and directory operation skills , friends in need can refer to it

The example in this article describes the PHP implementation of a recursive function for deleting an entire directory. Share it with everyone for your reference. The specific implementation method is as follows:

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

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);

?>

1 2

3

4 5

67 8 9 10 11 12
13
14
15 16 17
<๐ŸŽœ>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);<๐ŸŽœ> <๐ŸŽœ>?>
I hope this article will be helpful to everyoneโ€™s PHP programming design. http://www.bkjia.com/PHPjc/968662.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/968662.htmlTechArticlephp implements the recursive function for deleting the entire directory. This article mainly introduces the php implementation for deleting the entire directory. Recursive functions, involving PHP recursive algorithm and directory operation skills, friends in need...
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