header 头各种类型文件下载

时间:2017-12-07 16:54:20   收藏:0   阅读:234
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);
}

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

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!