这篇文章主要为大家详细介绍了php 利用递归遍历删除文件的简单示例,具有一定的参考价值,可以用来参考一下。
php递归遍历删除文件,这个函数稍加修改就可以变成一个递归文件拷贝函数,感兴趣的小伙伴,下面一起跟随四海网的小编罗X来看看吧。
/**
* 递归遍历删除文件
*
* @param
* @arrange (512.笔记) www.q1010.com
**/
function mover($src,$dst) {
$handle=opendir($src); // Opens source dir.
if (!is_dir($dst)) mkdir($dst,0755); // Make dest dir.
while ($file = readdir($handle)) {
if (($file!=".") and ($file!="..")) { // Skips . and .. dirs
$srcm=$src."/".$file;
$dstm=$dst."/".$file;
if (is_dir($srcm)) { // If another dir is found
mover($srcm,$dstm); // calls itself - recursive WTG
} else {
copy($srcm,$dstm);
unlink($srcm); // Is just a copy procedure is needed
} // comment out this line
}
}
closedir($handle);
rmdir($src); // and this one also :)
}
/*** 代码来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/437-0.html
注:关于php 利用递归遍历删除文件的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:递归,删除文件
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。