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

php Header函数实现下载短点续传程序

发布:smiling 来源: PHP粉丝网  添加日期:2014-08-28 08:49:41 浏览: 评论:0 

本文章给大家来总结几种实现下载短点续传程序功能,这些函数中主要是用到了php的header函数,有需要了解的朋友可进入参考.

例如:下载时输出,下载文件大小,文件名等等,前提是.htaccess文件的配置需要添加一句 :SetEnv no-gzip dont-vary 就是针对文件不进行压缩处理.

例1,代码如下:

  1. <?php  
  2. function download($file_dir,$file_name)  
  3. //参数说明:  
  4. //file_dir:文件所在目录  
  5. //file_name:文件名  
  6. {  
  7. $file_dir = chop($file_dir);//去掉路径中多余的空格  
  8. //得出要下载的文件的路径  
  9. if($file_dir != '')  
  10. {  
  11. $file_path = $file_dir;  
  12. if(substr($file_dir,strlen($file_dir)-1,strlen($file_dir)) != '/')  
  13. $file_path .= '/';  
  14. $file_path .= $file_name;  
  15. else {  
  16. $file_path = $file_name;  
  17. }  
  18. //判断要下载的文件是否存在  
  19. if(!file_exists($file_path))  
  20. //开源代码phpfensi.com 
  21. echo '对不起,你要下载的文件不存在。';  
  22. return false;  
  23. }  
  24. $file_size = filesize($file_path);  
  25. @header("Cache-control: public");  
  26. @header("Pragma: public");  
  27. //header("Content-Encoding: gzip");  
  28. @header("Content-Type: application/octetstream");  
  29. header("Content-Length: $file_size");  
  30. Header("Accept-Ranges: bytes");  
  31. header("Content-Disposition: attachment; filename=".$file_name);  
  32. $fp = fopen($file_path,"r");  
  33. fpassthru($fp);  
  34. return true;  
  35. }  
  36. download('路径参数','文件名');  
  37. ?> 

例2,代码如下:

  1. $fname = './MMLDZG.mp3';   
  2. $fp = fopen($fname,'rb');   
  3. $fsize = filesize($fname);   
  4. if (isset($_SERVER['HTTP_RANGE']) && ($_SERVER['HTTP_RANGE'] != "") && preg_match("/^bytes=([0-9]+)-$/i"$_SERVER['HTTP_RANGE'], $match) && ($match[1] < $fsize)) { 
  5.     $start = $match[1];  
  6. else { 
  7.     $start = 0;  
  8. }  
  9. @header("Cache-control: public"); @header("Pragma: public");  
  10. if ($star--> 0) {   
  11.     fseek($fp$start);   
  12.     Header("HTTP/1.1 206 Partial Content");   
  13.     Header("Content-Length: " . ($fsize - $start));   
  14.     Header("Content-Ranges: bytes" . $start . "-" . ($fsize - 1) . "/" . $fsize);   
  15. else {   
  16.     header("Content-Length: $fsize");   
  17.     Header("Accept-Ranges: bytes");   
  18. }   
  19. @header("Content-Type: application/octet-stream");   
  20. @header("Content-Disposition: attachment;filename=mmdld.mp3");   
  21. fpassthru($fp); 

fpassthru() 函数输出文件指针处的所有剩余数据,该函数将给定的文件指针从当前的位置读取到 EOF,并把结果写到输出缓冲区,上面两个实例对中文支持不好,下面这个函数很好的解决了这个问题,代码如下:

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

Tags: php Header函数 下载短点续传

分享到: