码迷,mamicode.com
首页 > 其他好文 > 详细

header 头各种类型文件下载

时间:2017-12-07 17:32:24      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:function   文件名   encoding   enc   nbsp   basename   种类   script   adf   

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 头各种类型文件下载

标签:function   文件名   encoding   enc   nbsp   basename   种类   script   adf   

原文地址:http://www.cnblogs.com/lauhp/p/7999686.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!