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

php断点续传下载示例代码

程序员文章站 2023-12-22 13:08:34
...
  1. $fname = './test.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] 0) {
  5. fseek($fp, $start);
  6. header("http/1.1 206 partial content");
  7. header("content-length: " . ($fsize - $start));
  8. header("content-ranges: bytes" . $start . "-" . ($fsize - 1) . "/" . $fsize);
  9. } else {
  10. header("content-length: $fsize");
  11. header("accept-ranges: bytes");
  12. }
  13. @header("content-type: application/octet-stream");
  14. @header("content-disposition: attachment;filename=mmdld.mp3");
  15. fpassthru($fp);
  16. fpassthru();//函数输出文件指针处的所有剩余数据。
复制代码

说明: 该函数将给定的文件指针从当前的位置读取到 eof,并把结果写到输出缓冲区,进而实现文件下载。

上一篇:

下一篇: