欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php实现的支持断点续传的文件下载类

程序员文章站 2023-02-08 12:18:36
本文实例讲述了php实现的支持断点续传的文件下载类及其用法,是非常实用的技巧。分享给大家供大家参考。具体方法如下: 通常来说,php支持断点续传,主要依靠http协议中...

本文实例讲述了php实现的支持断点续传的文件下载类及其用法,是非常实用的技巧。分享给大家供大家参考。具体方法如下:

通常来说,php支持断点续传,主要依靠http协议中 header http_range实现。

http断点续传原理:

http头 range、content-range()
http头中一般断点下载时才用到range和content-range实体头,
range用户请求头中,指定第一个字节的位置和最后一个字节的位置,如(range:200-300)
content-range用于响应头

请求下载整个文件:

get /test.rar http/1.1
connection: close
host: 116.1.219.219
range: bytes=0-801 //一般请求下载整个文件是bytes=0- 或不用这个头

一般正常回应:

http/1.1 200 ok
content-length: 801     
content-type: application/octet-stream
content-range: bytes 0-800/801 //801:文件总大小

filedownload.class.php类文件代码如下:

<?php 
/** php下载类,支持断点续传 
*  date:  2013-06-30 
*  author: test 
*  ver:  1.0 
* 
*  func: 
*  download: 下载文件 
*  setspeed: 设置下载速度 
*  getrange: 获取header中range 
*/ 
 
class filedownload{ // class start 
 
  private $_speed = 512;  // 下载速度 
 
  /** 下载 
  * @param string $file  要下载的文件路径 
  * @param string $name  文件名称,为空则与下载的文件名称一样 
  * @param boolean $reload 是否开启断点续传 
  */ 
  public function download($file, $name='', $reload=false){ 
    if(file_exists($file)){ 
      if($name==''){ 
        $name = basename($file); 
      } 
 
      $fp = fopen($file, 'rb'); 
      $file_size = filesize($file); 
      $ranges = $this->getrange($file_size); 
 
      header('cache-control:public'); 
      header('content-type:application/octet-stream'); 
      header('content-disposition:attachment; filename='.$name); 
 
      if($reload && $ranges!=null){ // 使用续传 
        header('http/1.1 206 partial content'); 
        header('accept-ranges:bytes'); 
         
        // 剩余长度 
        header(sprintf('content-length:%u',$ranges['end']-$ranges['start'])); 
         
        // range信息 
        header(sprintf('content-range:bytes %s-%s/%s', $ranges['start'], $ranges['end'], $file_size)); 
         
        // fp指针跳到断点位置 
        fseek($fp, sprintf('%u', $ranges['start'])); 
      }else{ 
        header('http/1.1 200 ok'); 
        header('content-length:'.$file_size); 
      } 
 
      while(!feof($fp)){ 
        echo fread($fp, round($this->_speed*1024,0)); 
        ob_flush(); 
        //sleep(1); // 用于测试,减慢下载速度 
      } 
 
      ($fp!=null) && fclose($fp); 
 
    }else{ 
      return ''; 
    } 
  } 
 
  /** 设置下载速度 
  * @param int $speed 
  */ 
  public function setspeed($speed){ 
    if(is_numeric($speed) && $speed>16 && $speed<4096){ 
      $this->_speed = $speed; 
    } 
  } 
 
  /** 获取header range信息 
  * @param int  $file_size 文件大小 
  * @return array 
  */ 
  private function getrange($file_size){ 
    if(isset($_server['http_range']) && !empty($_server['http_range'])){ 
      $range = $_server['http_range']; 
      $range = preg_replace('/[\s|,].*/', '', $range); 
      $range = explode('-', substr($range, 6)); 
      if(count($range)<2){ 
        $range[1] = $file_size; 
      } 
      $range = array_combine(array('start','end'), $range); 
      if(empty($range['start'])){ 
        $range['start'] = 0; 
      } 
      if(empty($range['end'])){ 
        $range['end'] = $file_size; 
      } 
      return $range; 
    } 
    return null; 
  } 
} // class end 
 
?> 

demo示例代码如下:

<?php 
require('filedownload.class.php'); 
$file = 'book.zip'; 
$name = time().'.zip'; 
$obj = new filedownload(); 
$flag = $obj->download($file, $name); 
//$flag = $obj->download($file, $name, true); // 断点续传 
 
if(!$flag){ 
  echo 'file not exists'; 
} 
?>

断点续传测试方法:

使用linux wget命令去测试下载, wget -c -o file http://xxx

1.先关闭断点续传

$flag = $obj->download($file, $name);
test@ubuntu:~/downloads$ wget -o test.rar http://demo.test.com/demo.php 
--2013-06-30 16:52:44-- http://demo.test.com/demo.php 
正在解析主机 demo.test.com... 127.0.0.1 
正在连接 demo.test.com|127.0.0.1|:80... 已连接。 
已发出 http 请求,正在等待回应... 200 ok 
长度: 10445120 (10.0m) [application/octet-stream] 
正在保存至: “test.rar” 
 
30% [============================>                                   ] 3,146,580  513k/s 估时 14s 
^c 
test@ubuntu:~/downloads$ wget -c -o test.rar http://demo.test.com/demo.php 
--2013-06-30 16:52:57-- http://demo.test.com/demo.php 
正在解析主机 demo.test.com... 127.0.0.1 
正在连接 demo.test.com|127.0.0.1|:80... 已连接。 
已发出 http 请求,正在等待回应... 200 ok 
长度: 10445120 (10.0m) [application/octet-stream] 
正在保存至: “test.rar” 
30% [============================>                                   ] 3,146,580  515k/s 估时 14s 
^c 

可以看到,wget -c不能断点续传 

2.开启断点续传

$flag = $obj->download($file, $name, true);
test@ubuntu:~/downloads$ wget -o test.rar http://demo.test.com/demo.php 
--2013-06-30 16:53:19-- http://demo.test.com/demo.php 
正在解析主机 demo.test.com... 127.0.0.1 
正在连接 demo.test.com|127.0.0.1|:80... 已连接。 
已发出 http 请求,正在等待回应... 200 ok 
长度: 10445120 (10.0m) [application/octet-stream] 
正在保存至: “test.rar” 
 
20% [==================>                                        ] 2,097,720  516k/s 估时 16s 
^c 
test@ubuntu:~/downloads$ wget -c -o test.rar http://demo.test.com/demo.php 
--2013-06-30 16:53:31-- http://demo.test.com/demo.php 
正在解析主机 demo.test.com... 127.0.0.1 
正在连接 demo.test.com|127.0.0.1|:80... 已连接。 
已发出 http 请求,正在等待回应... 206 partial content 
长度: 10445121 (10.0m),7822971 (7.5m) 字节剩余 [application/octet-stream] 
正在保存至: “test.rar” 
 
100%[++++++++++++++++++++++++=========================================================================>] 10,445,121  543k/s  花时 14s   
 
2013-06-30 16:53:45 (543 kb/s) - 已保存 “test.rar” [10445121/10445121]) 

可以看到会从断点的位置(%20)开始下载。 

本文实例完整源码可点击此处本站下载

相信本文所述对大家的php程序设计有一定的借鉴价值。