php 支援斷點續傳的檔案下載類

weixin_34026276發表於2015-08-13

php 支援斷點續傳的檔案下載類

分類: php class
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] view plaincopy
 
  1. <?php  
  2. /** php下載類,支援斷點續傳 
  3. *   Date:   2013-06-30 
  4. *   Author: fdipzone 
  5. *   Ver:    1.0 
  6. *   Func: 
  7. *   download: 下載檔案 
  8. *   setSpeed: 設定下載速度 
  9. *   getRange: 獲取header中Range 
  10. */  
  11.   
  12. class FileDownload{ // class start  
  13.   
  14.     private $_speed = 512;   // 下載速度  
  15.   
  16.   
  17.     /** 下載 
  18.     * @param String  $file   要下載的檔案路徑 
  19.     * @param String  $name   檔名稱,為空則與下載的檔名稱一樣 
  20.     * @param boolean $reload 是否開啟斷點續傳 
  21.     */  
  22.     public function download($file, $name='', $reload=false){  
  23.         if(file_exists($file)){  
  24.             if($name==''){  
  25.                 $name = basename($file);  
  26.             }  
  27.   
  28.             $fp = fopen($file, 'rb');  
  29.             $file_size = filesize($file);  
  30.             $ranges = $this->getRange($file_size);  
  31.   
  32.             header('cache-control:public');  
  33.             header('content-type:application/octet-stream');  
  34.             header('content-disposition:attachment; filename='.$name);  
  35.   
  36.             if($reload && $ranges!=null){ // 使用續傳  
  37.                 header('HTTP/1.1 206 Partial Content');  
  38.                 header('Accept-Ranges:bytes');  
  39.                   
  40.                 // 剩餘長度  
  41.                 header(sprintf('content-length:%u',$ranges['end']-$ranges['start']));  
  42.                   
  43.                 // range資訊  
  44.                 header(sprintf('content-range:bytes %s-%s/%s', $ranges['start'], $ranges['end'], $file_size));  
  45.                   
  46.                 // fp指標跳到斷點位置  
  47.                 fseek($fp, sprintf('%u', $ranges['start']));  
  48.             }else{  
  49.                 header('HTTP/1.1 200 OK');  
  50.                 header('content-length:'.$file_size);  
  51.             }  
  52.   
  53.             while(!feof($fp)){  
  54.                 echo fread($fp, round($this->_speed*1024,0));  
  55.                 ob_flush();  
  56.                 //sleep(1); // 用於測試,減慢下載速度  
  57.             }  
  58.   
  59.             ($fp!=null) && fclose($fp);  
  60.   
  61.         }else{  
  62.             return '';  
  63.         }  
  64.     }  
  65.   
  66.   
  67.     /** 設定下載速度 
  68.     * @param int $speed 
  69.     */  
  70.     public function setSpeed($speed){  
  71.         if(is_numeric($speed) && $speed>16 && $speed<4096){  
  72.             $this->_speed = $speed;  
  73.         }  
  74.     }  
  75.   
  76.   
  77.     /** 獲取header range資訊 
  78.     * @param  int   $file_size 檔案大小 
  79.     * @return Array 
  80.     */  
  81.     private function getRange($file_size){  
  82.         if(isset($_SERVER['HTTP_RANGE']) && !empty($_SERVER['HTTP_RANGE'])){  
  83.             $range = $_SERVER['HTTP_RANGE'];  
  84.             $range = preg_replace('/[\s|,].*/', '', $range);  
  85.             $range = explode('-', substr($range, 6));  
  86.             if(count($range)<2){  
  87.                 $range[1] = $file_size;  
  88.             }  
  89.             $range = array_combine(array('start','end'), $range);  
  90.             if(empty($range['start'])){  
  91.                 $range['start'] = 0;  
  92.             }  
  93.             if(empty($range['end'])){  
  94.                 $range['end'] = $file_size;  
  95.             }  
  96.             return $range;  
  97.         }  
  98.         return null;  
  99.     }  
  100.   
  101. // class end  
  102.   
  103. ?>  
demo
[php] view plaincopy
 
  1. <?php  
  2.   
  3. require('FileDownload.class.php');  
  4. $file = 'book.zip';  
  5. $name = time().'.zip';  
  6. $obj = new FileDownload();  
  7. $flag = $obj->download($file, $name);  
  8. //$flag = $obj->download($file, $name, true); // 斷點續傳  
  9.   
  10. if(!$flag){  
  11.     echo 'file not exists';  
  12. }  
  13.   
  14. ?>  
斷點續傳測試方法:
使用linux wget命令去測試下載, wget -c -O file http://xxx

1.先關閉斷點續傳
$flag = $obj->download($file, $name);
[plain] view plaincopy
 
  1. fdipzone@ubuntu:~/Downloads$ wget -O test.rar http://demo.fdipzone.com/demo.php  
  2. --2013-06-30 16:52:44--  http://demo.fdipzone.com/demo.php  
  3. 正在解析主機 demo.fdipzone.com... 127.0.0.1  
  4. 正在連線 demo.fdipzone.com|127.0.0.1|:80... 已連線。  
  5. 已發出 HTTP 請求,正在等待回應... 200 OK  
  6. 長度: 10445120 (10.0M) [application/octet-stream]  
  7. 正在儲存至: “test.rar”  
  8.   
  9. 30% [============================>                                                                     ] 3,146,580    513K/s  估時 14s  
  10. ^C  
  11. fdipzone@ubuntu:~/Downloads$ wget -c -O test.rar http://demo.fdipzone.com/demo.php  
  12. --2013-06-30 16:52:57--  http://demo.fdipzone.com/demo.php  
  13. 正在解析主機 demo.fdipzone.com... 127.0.0.1  
  14. 正在連線 demo.fdipzone.com|127.0.0.1|:80... 已連線。  
  15. 已發出 HTTP 請求,正在等待回應... 200 OK  
  16. 長度: 10445120 (10.0M) [application/octet-stream]  
  17. 正在儲存至: “test.rar”  
  18.   
  19. 30% [============================>                                                                     ] 3,146,580    515K/s  估時 14s  
  20. ^C  
  21.   
  22. 可以看到,wget -c不能斷點續傳  

2.開啟斷點續傳
$flag = $obj->download($file, $name, true);
[plain] view plaincopy
 
  1. fdipzone@ubuntu:~/Downloads$ wget -O test.rar http://demo.fdipzone.com/demo.php  
  2. --2013-06-30 16:53:19--  http://demo.fdipzone.com/demo.php  
  3. 正在解析主機 demo.fdipzone.com... 127.0.0.1  
  4. 正在連線 demo.fdipzone.com|127.0.0.1|:80... 已連線。  
  5. 已發出 HTTP 請求,正在等待回應... 200 OK  
  6. 長度: 10445120 (10.0M) [application/octet-stream]  
  7. 正在儲存至: “test.rar”  
  8.   
  9. 20% [==================>                                                                               ] 2,097,720    516K/s  估時 16s  
  10. ^C  
  11. fdipzone@ubuntu:~/Downloads$ wget -c -O test.rar http://demo.fdipzone.com/demo.php  
  12. --2013-06-30 16:53:31--  http://demo.fdipzone.com/demo.php  
  13. 正在解析主機 demo.fdipzone.com... 127.0.0.1  
  14. 正在連線 demo.fdipzone.com|127.0.0.1|:80... 已連線。  
  15. 已發出 HTTP 請求,正在等待回應... 206 Partial Content  
  16. 長度: 10445121 (10.0M),7822971 (7.5M) 位元組剩餘 [application/octet-stream]  
  17. 正在儲存至: “test.rar”  
  18.   
  19. 100%[++++++++++++++++++++++++=========================================================================>] 10,445,121   543K/s   花時 14s     
  20.   
  21. 2013-06-30 16:53:45 (543 KB/s) - 已儲存 “test.rar” [10445121/10445121])  
  22.   
  23. 可以看到會從斷點的位置(%20)開始下載。  

原始碼下載地址:點選下載

版權宣告:本文為博主原創文章,未經博主允許不得轉載。

相關文章