php下载文件函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php下载文件函数相关的知识,希望对你有一定的参考价值。

  1. 代码:
    /*
    @desc:php下载文件函数,支持限速
    @param name 待下载文件名
    @param rate 速度,单位kb
    */
    function download($file,$rate=false){
    set_time_limit(0);
    $content = file_get_contents($file);
    $filesize = strlen($content);
    header (‘Content-Length: ‘.$filesize);
    header (‘Content-type: application/file‘);
    header ("Content-Disposition: attachment; filename=".basename($file));
    if($rate){
        ob_start();
        $fr=fopen($file,"rb");
        while (!feof($fr)){
            $data = fread($fr,round($rate*1024));
            echo $data;
            ob_flush();
            flush();
            sleep(1);
        }
        if($fr){
            fclose($fr);
        }
    }else{
        readfile($file);
    }
    }
  2. 测试:
    download(‘2018.rar‘,128);
  3. 输出:
    技术分享图片

以上是关于php下载文件函数的主要内容,如果未能解决你的问题,请参考以下文章

代码片段 PHP,预期文件结尾,我错在哪里?

用php下载一个svg

PHP常用代码片段

php下载文件函数

21个常用代码片段

php里怎么做下载文件代码(主要是能够在苹果手机里。)