下面的代码不使用PHP内置的copy函数,直接通过文件读取写入的操作方式复制文件
/**
* PHP中不使用copy()函数复制文件的代码
*
* @param
* @arrange 512-笔记网: www.jb51.cc
**/
function copyfiles($file1,$file2){
$contentx =@file_get_contents($file1);
$openedfile = fopen($file2,"w");
fwrite($openedfile,$contentx);
fclose($openedfile);
if ($contentx === FALSE) {
$status=false;
}else $status=true;
return $status;
}
/*** 来自编程之家 jb51.cc(jb51.cc) ***/