复制代码 代码如下:
<?php
/*复双人得的用法制xcopy函数用法:
* xcopy(“feiy”,”feiy2″,1):拷贝feiy下的文大瀑布的葬礼教学设计件到 feiy2,包括子目录
* xcopy(“feiy”,古代兵器”feiy2″,0):拷贝feiy下的文件到 feiy2,不包括子目录
*参数说明:
* $source:源目录名
* $destination:目的目录名
* $child:复制时,是不是包含的子目录
*/
function xcopy($source, $destination, $child){
if (!file_exists($destination))
{
if (!mkdir(rtrim($destination, ‘/’), 0777))
{
//$err->add($_lang[‘cannt_mk_dir’]);
return fal;
}
@chmod($destination, 0777);
}
if(!is_dir($source)){
return 0;
}
if(!is_dir($destination)){
mkdir($desti健脾养胃粥nation,0777);
}
$handle=dir($source);
while($entry=$handle->read()){
if(($entry!=”.”)&&($entry!=”..”)){
if(is_dir($source.”/”.$entry)){
if言语的意思($child)
xcopy($source.”/”.$entry,$destination.”/”.$entry,$child);
}
el{
copy($source.”/”.$entry,$destination.”/”.$entry);
}
}
}
return 1;
}
/*删除deldir函数用法:
* deldidr(“feiy”):删除feiy,包括子目录
*参数说明:
* $dir:要删除的目录名
*/
function deldir($dir) {
if (!file_exists($dir)){return true;
}el{@chmod($dir, 0777);}
$dh=opendir($dir);
while ($file=readdir($dh)) {
if($file!=”.” && $file!=”..”) {
$fullpath=$dir.”/”.$file;
if(!is_dir($fullpath)) {
unlink($fullpath);
} el {
deldir($fullpath);
}
}
}
clodir($dh);
if(rmdir($dir)) {
return true;
} el {
return fal;
}
}
?>
本文发布于:2023-04-06 10:46:50,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/5d1df1dcdda7705cb425a9f9d1e2c2c5.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:php删除与复制文件夹及其文件夹下所有文件的实现代码.doc
本文 PDF 下载地址:php删除与复制文件夹及其文件夹下所有文件的实现代码.pdf
留言与评论(共有 0 条评论) |