最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

模擬xcopy的函數(shù)

 更新時(shí)間:2006年10月09日 00:00:00   作者:  

模擬xcopy的函數(shù) <?php
/*************************************
* 系統(tǒng)名稱(chēng):模擬xcopy的函數(shù)
* 程序功能:模擬xcopy的函數(shù)
* 開(kāi)發(fā)日期:2003/03/14
*************************************/
?>
<?
//copy a direction's all files to another direction
function xCopy($source, $destination, $child){
//用法:
// xCopy("feiy","feiy2",1):拷貝feiy下的文件到 feiy2,包括子目錄
// xCopy("feiy","feiy2",0):拷貝feiy下的文件到 feiy2,不包括子目錄
//參數(shù)說(shuō)明:
// $source:源目錄名
// $destination:目的目錄名
// $child:復(fù)制時(shí),是不是包含的子目錄
if(!is_dir($source)){
echo("Error:the $source is not a direction!");
return 0;
}
if(!is_dir($destination)){
mkdir($destination,0777);
}


$handle=dir($source);
while($entry=$handle->read()) {
if(($entry!=".")&&($entry!="..")){
if(is_dir($source."/".$entry)){
if($child)
xCopy($source."/".$entry,$destination."/".$entry,$child);
}
else{

copy($source."/".$entry,$destination."/".$entry);
}

}
}

return 1;
}

?>

相關(guān)文章

最新評(píng)論

辽源市| 石楼县| 清远市| 靖西县| 赤城县| 榆中县| 从化市| 泸西县| 青龙| 屏边| 梅州市| 师宗县| 独山县| 临澧县| 海城市| 新闻| 贵南县| 宜黄县| 库车县| 仪征市| 扬州市| 贵阳市| 昌图县| 安庆市| 子洲县| 化德县| 长海县| 望江县| 吉安市| 鱼台县| 衢州市| 博乐市| 治多县| 西丰县| 鸡泽县| 龙南县| 沾化县| 安泽县| 镇赉县| 友谊县| 平邑县|