在使用tp5框架时,在后台调出浏览下载文件时,定义了浏览器的“Content-type“,但是最后总是变成“text/html“

解决的方法

    ob_end_clean();
    header('Content-type:application/pdf');//下载的文件类型信息
    header('Content-Disposition: attachment; filename=name');
    header('Content-Length:'.filesize($file)); //内容长度
    ob_start();
    echo file_get_contents($file);
    $downloadData = ob_get_contents();
    ob_end_clean();
    echo $downloadData;
上一篇:STM32F1下载程序方法


下一篇:php页面静态化技术