首页 > Web开发 > 详细

http response

时间:2014-11-05 16:36:13      阅读:224      评论:0      收藏:0      [点我收藏+]

关键词:http response header 下载文件

案例1:

访问某个链接,然后下载文件,需要特定的http头:

header("Content-Type:application/zip;");
header("Content-Disposition: attachment; filename=tmp.txt");

content-type表明是什么类型的文件,zip表示是zip类型的

content-disposition这个选项固定为attachment,我也不清楚是啥意思

filename是下载时保存用的文件名

附:shell下的zip命令:http://www.blogjava.net/cpegtop/articles/382714.html

http response

原文:http://www.cnblogs.com/helww/p/4076362.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!