PHP下载大文件失败并限制下载速度的实例代码
发布:smiling 来源: PHP粉丝网 添加日期:2021-11-22 14:25:51 浏览: 评论:0
这篇文章主要介绍了PHP下载大文件失败并限制下载速度的实例代码,需要的朋友可以参考下。
1.问题:
PHP在使用readfile函数定义下载文件时候,文件不可以过大,否则会下载失败,文件损坏且不报错;
2.原因:
这个是因为readfile读取文件的时候会把文件放入缓存,导致内存溢出;
3.解决:分段下载,并限制下载速度;
- <?php
- //设置文件最长执行时间
- set_time_limit(0);
- if (isset($_GET['filename']) && !emptyempty($_GET['filename'])) {
- $file_name = $_GET['filename'];
- $file = __DIR__ . '/assets/' . $file_name;
- } else {
- echo 'what are your searching for?';
- exit();
- }
- if (file_exists($file) && is_file($file)) {
- $filesize = filesize($file);
- header('Content-Description: File Transfer');
- header('Content-Type: application/octet-stream');
- header('Content-Transfer-Encoding: binary');
- header('Accept-Ranges: bytes');
- header('Expires: 0');
- header('Cache-Control: must-revalidate');
- header('Pragma: public');
- header('Content-Length: ' . $filesize);
- header('Content-Disposition: attachment; filename=' . $file_name);
- // 打开文件
- $fp = fopen($file, 'rb');
- // 设置指针位置
- fseek($fp, 0);
- // 开启缓冲区
- ob_start();
- // 分段读取文件
- while (!feof($fp)) {
- $chunk_size = 1024 * 1024 * 2; // 2MB
- echo fread($fp, $chunk_size);
- ob_flush(); // 刷新PHP缓冲区到Web服务器
- flush(); // 刷新Web服务器缓冲区到浏览器
- sleep(1); // 每1秒 下载 2 MB
- }
- // 关闭缓冲区
- ob_end_clean();
- fclose($fp);
- } else {
- echo 'file not exists or has been removed!';
- }
- exit();
Tags: PHP下载大文件 PHP限制下载速度
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)