当前位置:首页 > PHP教程 > php类库 > 列表

远程文件下载代码

发布:smiling 来源: PHP粉丝网  添加日期:2013-12-11 13:34:50 浏览: 评论:0 

这里为各位提供一款远程文件下载代码,我们可以把远程的文件用php下载到本地指定的目录,下面就是一款下载远程服务器文件代码类。

  1. class download 
  2.     var $url;//远程文件地址 
  3.     var $file_name = "hdwiki.zip";//下载来的文件名称 
  4.     var $save_path = "./www.phpfensi.com";//下载到本地的文件路径 
  5.     var $localfile;//下载到本地文件的路径和名称 
  6.     var $warning;//警告信息 
  7.     var $redown=0;//是否重新下载 
  8.  
  9.     /*初始化*/ 
  10.     function seturl($url
  11.     { 
  12.          if(!emptyempty($url))$this->url = $url
  13.     } 
  14.     function setfilename($file_name
  15.     { 
  16.      if(!emptyempty($file_name))$this->file_name = $file_name
  17.     } 
  18.     function setsavepath($save_path
  19.     { 
  20.      if(!emptyempty($save_path))$this->save_path = $save_path
  21.     } 
  22.     function setredown($redown
  23.     { 
  24.      if(!emptyempty($redown))$this->redown = $redown
  25.     } 
  26.     function download($url$redown = 0, $save_path = 0, $file_name = 0) 
  27.     { 
  28.         $this->seturl($url); 
  29.         $this->setfilename($file_name); 
  30.         $this->setsavepath($save_path); 
  31.         $this->setredown($redown); 
  32.         if(!file_exists($this->save_path)) 
  33.         { 
  34.             $dir = explode("/",$this->save_path); 
  35.             foreach($dir as $p
  36.             mkdir($p); 
  37.         } 
  38.    } 
  39.     
  40.     /* 检查url合法性函数 */ 
  41.     function checkurl(){ 
  42.         return preg_match("/^(http|ftp)(://)([a-za-z0-9-_]+[./]+[w-_/]+.*)+$/i"$this->url); 
  43.     } 
  44.     //下载文件到本地 
  45.     function downloadfile() 
  46.     { 
  47.         //检测变量 
  48.         $this->localfile = $this->save_path."/".$this->file_name; 
  49.          if($this->url == "" || $this->localfile == ""){ 
  50.                  $this->warning = "error: 变量设置错误."
  51.              return $this->warning; 
  52.         } 
  53.         if (!$this->checkurl()){ 
  54.             $this->warning = "error: url "$this->url ." 不合法."
  55.                return $this->warning; 
  56.             } 
  57.         if (file_exists($this->localfile)){ 
  58.             if($this->redown) 
  59.             { 
  60.                 unlink($this->localfile); 
  61.             } 
  62.             else 
  63.             { 
  64.                 $this->warning = "warning: 升级文件 "$this->localfile ." 已经存在! 重新下载"
  65.                 return $this->warning; 
  66.              //exit("error: 本地文件 ". $this->localfile ." 已经存在,请删除或改名后重新运行本程序."); 
  67.             } 
  68.         } 
  69.         //打开远程文件 
  70.         $fp = fopen($this->url, "rb"); 
  71.         if (!$fp){ 
  72.             $this->warning = "error: 打开远程文件 "$this->url ." 失败."
  73.              return $this->warning; 
  74.         } 
  75.      //打开本地文件 
  76.      $sp = fopen($this->localfile, "wb"); 
  77.      if (!$sp){ 
  78.          $this->warning = "error: 打开本地文件 "$this->localfile ." 失败."
  79.          return $this->warning; 
  80.      } 
  81.      //下载远程文件 
  82.      //echo "正在下载远程文件,请等待"; 
  83.      while (!feof($fp)){ 
  84.      $tmpfile .= fread($fp, 1024); 
  85.      //echo strlen($tmpfile); 
  86.      } 
  87.        //保存文件到本地 
  88.        fwrite($sp$tmpfile); 
  89.      fclose($fp); 
  90.      fclose($sp); 
  91.       
  92.      if($this->redown) 
  93.              $this->warning = "success: 重新下载文件 "$this->file_name ." 成功"
  94.      else  
  95.              $this->warning = "success: 下载文件 "$this->file_name ." 成功"
  96.                
  97.      return $this->warning; 
  98.     } 

Tags: 远程 文件 下载

分享到: