当前位置:首页 > PHP教程 > php应用 > 列表

PHP实现HTTP断点续传的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-28 20:52:32 浏览: 评论:0 

这篇文章主要介绍了PHP实现HTTP断点续传的方法,实例分析了php基于http协议断点续传下载文件的实现方法,需要的朋友可以参考下。

本文实例讲述了PHP实现HTTP断点续传的方法,分享给大家供大家参考,具体实现方法如下:

  1. <?php 
  2. /** 
  3.  * PHP-HTTP断点续传实现 
  4.  * @param string $path: 文件所在路径 
  5.  * @param string $file: 文件名 
  6.  * @return void 
  7.  */ 
  8. function download($path,$file) { 
  9.   $real = $path.'/'.$file
  10.   if(!file_exists($real)) { 
  11.     return false; 
  12.   } 
  13.   $size = filesize($real); 
  14.   $size2 = $size-1; 
  15.   $range = 0; 
  16.   if(isset($_SERVER['HTTP_RANGE'])) { 
  17.     header('HTTP /1.1 206 Partial Content'); 
  18.     $range = str_replace('=','-',$_SERVER['HTTP_RANGE']); 
  19.     $range = explode('-',$range); 
  20.     $range = trim($range[1]); 
  21.     header('Content-Length:'.$size); 
  22.     header('Content-Range: bytes '.$range.'-'.$size2.'/'.$size); 
  23.   } else { 
  24.     header('Content-Length:'.$size); 
  25.     header('Content-Range: bytes 0-'.$size2.'/'.$size); 
  26.   } 
  27.   header('Accenpt-Ranges: bytes'); 
  28.   header('application/octet-stream'); 
  29.   header("Cache-control: public"); 
  30.   header("Pragma: public"); 
  31.   //解决在IE中下载时中文乱码问题 
  32.   $ua = $_SERVER['HTTP_USER_AGENT']; 
  33.   if(preg_match('/MSIE/',$ua)) { 
  34.     $ie_filename = str_replace('+','%20',urlencode($file)); 
  35.     header('Content-Dispositon:attachment; filename='.$ie_filename); 
  36.   } else { 
  37.     header('Content-Dispositon:attachment; filename='.$file); 
  38.   } 
  39.   $fp = fopen($real,'rb+'); 
  40.   fseek($fp,$range); 
  41.   while(!feof($fp)) { 
  42.     set_time_limit(0); 
  43.     print(fread($fp,1024)); 
  44.     flush(); 
  45.     ob_flush(); 
  46.   } 
  47.   fclose($fp); 
  48. <?php 
  49. /** 
  50.  * PHP-HTTP断点续传实现 
  51.  * @param string $path: 文件所在路径 
  52.  * @param string $file: 文件名 
  53.  * @return void 
  54.  */ 
  55. function download($path,$file) { 
  56.   $real = $path.'/'.$file
  57.   if(!file_exists($real)) { 
  58.     return false; 
  59.   } 
  60.   $size = filesize($real); 
  61.   $size2 = $size-1; 
  62.   $range = 0; 
  63.   if(isset($_SERVER['HTTP_RANGE'])) { 
  64.     header('HTTP /1.1 206 Partial Content'); 
  65.     $range = str_replace('=','-',$_SERVER['HTTP_RANGE']); 
  66.     $range = explode('-',$range); 
  67.     $range = trim($range[1]); 
  68.     header('Content-Length:'.$size); 
  69.     header('Content-Range: bytes '.$range.'-'.$size2.'/'.$size); 
  70.   } else { 
  71.     header('Content-Length:'.$size); 
  72.     header('Content-Range: bytes 0-'.$size2.'/'.$size); 
  73.   } 
  74.   header('Accenpt-Ranges: bytes'); 
  75.   header('application/octet-stream'); 
  76.   header("Cache-control: public"); 
  77.   header("Pragma: public"); 
  78.   //解决在IE中下载时中文乱码问题 
  79.   $ua = $_SERVER['HTTP_USER_AGENT']; 
  80.   if(preg_match('/MSIE/',$ua)) { 
  81.     $ie_filename = str_replace('+','%20',urlencode($file)); 
  82.     header('Content-Dispositon:attachment; filename='.$ie_filename); 
  83.   } else { 
  84.     header('Content-Dispositon:attachment; filename='.$file); 
  85.   } 
  86.   $fp = fopen($real,'rb+'); 
  87.   fseek($fp,$range); 
  88.   while(!feof($fp)) { 
  89.     set_time_limit(0); 
  90.     print(fread($fp,1024)); 
  91.     flush(); 
  92.     ob_flush(); 
  93.   } 
  94.   fclose($fp); 

希望本文所述对大家的php程序设计有所帮助。

Tags: HTTP断点续传

分享到: