码迷,mamicode.com
首页 > Web开发 > 详细

php 下载生成word文件

时间:2014-12-01 12:50:20      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   ar   color   os   sp   文件   on   

方案一

$html2 =‘数字‘; 

header("Content-type: application/octet-stream"); 
header("Accept-Ranges: bytes"); 
header("Accept-Length: ".strlen($html2));
header(‘Content-Disposition: attachment; filename=test.doc‘); 
header("Pragma:no-cache"); 
header("Expires:0"); 
echo $html2;
//此方法是放入缓冲区输出, 默认4096. 超出自动就输出到浏览器上了。 可以修改配置文件 output_buffering = 4096 改成 On (无限大)

$html2 = ‘实验中学‘; 

echo $html2;

ob_start();
header("Content-type: application/octet-stream"); 
header("Accept-Ranges: bytes"); 
header("Accept-Length: ".strlen($html2));
header(‘Content-Disposition: attachment; filename=test.doc‘); 
header("Pragma:no-cache"); 
header("Expires:0"); 
ob_end_clean();

 

php 下载生成word文件

标签:style   blog   io   ar   color   os   sp   文件   on   

原文地址:http://www.cnblogs.com/loveyouyou616/p/4134637.html

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