本文转自 http://www.cnblogs.com/thinksasa/p/3504153.html WORD: <?php header("Cache-Control: no-cache, must-revalidate"); header("Pragma: no-cache"); //有了这些,可以把带html标签的html源码导入到word里,并且可以保持html的样式。 /* <STYLE> BR.page { page-break-after: always } </STYLE> 在<head>部分加这个是为了实现打印的时候分页 */ $wordStr = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40"> <head> <STYLE> BR.page { page-break-after: always } </STYLE> </head><body>'; $wordStr = "<b>hello</b><p>this is html code</p>"; $wordStr .= '</body></html>'; //防止导出乱码 $file = iconv("utf-8", "GBK", $filename); header("Content-Type: application/doc"); header("Content-Disposition: attachment; filename=" . $file . ".doc"); echo $wordStr; ?> CVS:<?php header("Content-Disposition: attachment; filename=邮寄地址.csv"); echo "姓名,性别,年龄,电话\n张三,男,23,15010125818"; ?>注:echo中的逗号是每个列的分割标识符,\n则是换行。还有如下可参考:
header("Content-type:application/vnd.ms-excel");
PDF:
header("Content-Disposition:filename=test.xls");<?php header("Content-type:application/pdf"); // 文件将被称为 downloaded.pdf header("Content-Disposition:attachment;filename='downloaded.pdf'"); // PDF 源在 original.pdf 中 readfile("original.pdf"); ?> <html> <body>
PHP导出word,CVS,PDF
最新推荐文章于 2025-01-06 18:37:57 发布
本文介绍了如何使用PHP脚本将带有HTML标签的内容导出为Word文档,同时保持原有的样式不变;此外还展示了如何创建CSV文件及设置正确的HTTP头部信息以便浏览器正确解析并下载;最后给出了生成PDF文件的方法。
2647

被折叠的 条评论
为什么被折叠?



