首页 > 开发 > PHP > 正文

PHP 异地保存文件

2024-05-04 22:58:40
字体:
来源:转载
供稿:网友
<?php
function download($file_source, $file_target
) {
      
$rh = fopen($file_source, 'rb'
);
      
$wh = fopen($file_target, 'wb'
);
       if (
$rh===false || $wh===false
) {
// error reading or opening file
          
return true
;
       }
       while (!
feof($rh
)) {
           if (
fwrite($wh, fread($rh, 1024)) === false
) {
                  
// 'download error: cannot write to file ('.$file_target.')';
                  
return true
;
               }
       }
      
fclose($rh
);
      
fclose($wh
);
      
// no error
      
return false
;
   }
?>


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表