header 头各种类型文件下载

Posted 小绵羊~~

tags:

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

function down_file($url,$type=‘application/zip‘){
    header("Cache-Control: public"); 
    header("Content-Description: File Transfer"); 
    header(‘Content-disposition: attachment; filename=‘.basename($url)); //文件名   
    header("Content-Type: ".$type); //zip格式的   
    header("Content-Transfer-Encoding: binary"); //告诉浏览器,这是二进制文件    
    header(‘Content-Length: ‘. filesize($url)); //告诉浏览器,文件大小   
    @readfile($url);
}

以上是关于header 头各种类型文件下载的主要内容,如果未能解决你的问题,请参考以下文章

header头 下载文件 参数详解

php下载文件添加header响应头

利用文件头判断文件类型

php解决跨域的代码

前端向后端传递formData类型的二进制文件

HTTP消息中header头部信息的讲解