首页 > 代码库 > php 下载生成word文件
php 下载生成word文件
方案一$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文件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。