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 头各种类型文件下载的主要内容,如果未能解决你的问题,请参考以下文章