PHP实现HTTP断点续传的方法
发布:smiling 来源: PHP粉丝网 添加日期:2021-05-28 20:52:32 浏览: 评论:0
这篇文章主要介绍了PHP实现HTTP断点续传的方法,实例分析了php基于http协议断点续传下载文件的实现方法,需要的朋友可以参考下。
本文实例讲述了PHP实现HTTP断点续传的方法,分享给大家供大家参考,具体实现方法如下:
- <?php
- /**
- * PHP-HTTP断点续传实现
- * @param string $path: 文件所在路径
- * @param string $file: 文件名
- * @return void
- */
- function download($path,$file) {
- $real = $path.'/'.$file;
- if(!file_exists($real)) {
- return false;
- }
- $size = filesize($real);
- $size2 = $size-1;
- $range = 0;
- if(isset($_SERVER['HTTP_RANGE'])) {
- header('HTTP /1.1 206 Partial Content');
- $range = str_replace('=','-',$_SERVER['HTTP_RANGE']);
- $range = explode('-',$range);
- $range = trim($range[1]);
- header('Content-Length:'.$size);
- header('Content-Range: bytes '.$range.'-'.$size2.'/'.$size);
- } else {
- header('Content-Length:'.$size);
- header('Content-Range: bytes 0-'.$size2.'/'.$size);
- }
- header('Accenpt-Ranges: bytes');
- header('application/octet-stream');
- header("Cache-control: public");
- header("Pragma: public");
- //解决在IE中下载时中文乱码问题
- $ua = $_SERVER['HTTP_USER_AGENT'];
- if(preg_match('/MSIE/',$ua)) {
- $ie_filename = str_replace('+','%20',urlencode($file));
- header('Content-Dispositon:attachment; filename='.$ie_filename);
- } else {
- header('Content-Dispositon:attachment; filename='.$file);
- }
- $fp = fopen($real,'rb+');
- fseek($fp,$range);
- while(!feof($fp)) {
- set_time_limit(0);
- print(fread($fp,1024));
- flush();
- ob_flush();
- }
- fclose($fp);
- }
- <?php
- /**
- * PHP-HTTP断点续传实现
- * @param string $path: 文件所在路径
- * @param string $file: 文件名
- * @return void
- */
- function download($path,$file) {
- $real = $path.'/'.$file;
- if(!file_exists($real)) {
- return false;
- }
- $size = filesize($real);
- $size2 = $size-1;
- $range = 0;
- if(isset($_SERVER['HTTP_RANGE'])) {
- header('HTTP /1.1 206 Partial Content');
- $range = str_replace('=','-',$_SERVER['HTTP_RANGE']);
- $range = explode('-',$range);
- $range = trim($range[1]);
- header('Content-Length:'.$size);
- header('Content-Range: bytes '.$range.'-'.$size2.'/'.$size);
- } else {
- header('Content-Length:'.$size);
- header('Content-Range: bytes 0-'.$size2.'/'.$size);
- }
- header('Accenpt-Ranges: bytes');
- header('application/octet-stream');
- header("Cache-control: public");
- header("Pragma: public");
- //解决在IE中下载时中文乱码问题
- $ua = $_SERVER['HTTP_USER_AGENT'];
- if(preg_match('/MSIE/',$ua)) {
- $ie_filename = str_replace('+','%20',urlencode($file));
- header('Content-Dispositon:attachment; filename='.$ie_filename);
- } else {
- header('Content-Dispositon:attachment; filename='.$file);
- }
- $fp = fopen($real,'rb+');
- fseek($fp,$range);
- while(!feof($fp)) {
- set_time_limit(0);
- print(fread($fp,1024));
- flush();
- ob_flush();
- }
- fclose($fp);
- }
希望本文所述对大家的php程序设计有所帮助。
Tags: HTTP断点续传
- 上一篇:PHP实现在线阅读PDF文件的方法
- 下一篇:php判断表是否存在的方法
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)