php 分段下载文件

 PHP在使用readfile函数定义下载文件时候,文件不可以过大,否则会下载失败,网页访问不了的情况。 这个是因为readfile读取文件的时候会把文件放入缓存,导致内存溢出。所以要求分段下载, 刷新PHP缓冲区,并限制下载速度。

 public function DownLoadFile(){
        
        $file_path = I("file_path");
        $file_name = I("file_name");
        
        
        //检查文件是否存在
        if (! file_exists ($file_path)) {
            header('HTTP/1.1 404 NOT FOUND');
        } else {
            
            $filesize = filesize($file_path);
            
            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);
                        
            ob_end_clean();
                
            ob_start();
            //以只读和二进制模式打开文件
            $file = fopen ( $file_path, "rb" );
            
            // 分段读取文件
            while (!feof($file)) {
            
                $chunk_size = 1024 * 1024 * 2; // 2MB
            
                echo fread($file, $chunk_size);
            
                ob_flush(); // 刷新PHP缓冲区到Web服务器
            
                flush(); // 刷新Web服务器缓冲区到浏览器
            
                sleep(1); // 每1秒 下载 2 MB
            
            }
            
            // 关闭缓冲区
                   
            ob_end_clean();
            fclose ( $file );
            exit ();
        
        }
        
    }

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值