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

下载前不能有输出

时间:2015-06-10 07:43:02      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:

//下面是输出下载;

header ( "Cache-Control: max-age=0" );

header ( "Content-Description: File Transfer" );

header ( ‘Content-disposition: attachment; filename=‘ . basename ( $filename ) ); // 文件名

header ( "Content-Type: application/zip" ); // zip格式的

header ( "Content-Transfer-Encoding: binary" ); // 告诉浏览器,这是二进制文件

header ( ‘Content-Length: ‘ . filesize ( $filename ) ); // 告诉浏览器,文件大小

ob_clean();

flush();

 echo readfile ( $filename );//输出文件;

下载前不能有输出

标签:

原文地址:http://www.cnblogs.com/faronl/p/4565065.html

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