当前位置:Gxlcms > PHP教程 > php断点续传下载示例代码

php断点续传下载示例代码

时间:2021-07-01 10:21:17 帮助过:21人阅读

  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] < $fsize)) { $start = $match[1]; } else { $start = 0; } @header("cache-control: public"); @header("pragma: public"); if ($star--> 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,并把结果写到输出缓冲区,进而实现文件下载。

人气教程排行