php 导出word文档,默认为“页面视图”的解决办法
内容摘要
这篇文章主要为大家详细介绍了php 导出word文档,默认为“页面视图”的简单示例,具有一定的参考价值,可以用来参考一下。
对php导出word文档 默认为“页面视图”实例
对php导出word文档 默认为“页面视图”实例
文章正文
这篇文章主要为大家详细介绍了php 导出word文档,默认为“页面视图”的简单示例,具有一定的参考价值,可以用来参考一下。
对php导出word文档 默认为“页面视图”实例对此感兴趣的朋友,看看idc笔记做的技术笔记!
/**
* php导出word文档 默认为“页面视图”实例
*
* @param
* @arrange 512-笔记网: www.idcnote.com
**/
<?php
header("Content-Type:application/msword");
header("Content-Disposition:attachment;filename=doc.doc"); //指定文件名称
header("Pragma:no-cache");
header("Expires:0");
$html = '<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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<xml><w:WordDocument><w:View>Print</w:View></xml>
</head><body>';
$html .= '<table border="1" cellspacing="2" cellpadding="2" width="90%" align="center">';
$html .= '<tr bgcolor="#cccccc"><td align="center">http://info.zg700.com/</td></tr>';
$html .= '<tr bgcolor="#f6f7fa"><td><span style="color:#FF0000;"><strong>PHP将网页代码导出word文档</strong></span></td></tr>';
$html .= '<tr><td align="center"><img src="/upload/header.gif"></td></tr>'; //自定义图片文件
$html .= '</table>';
$html .= '</table></body></html>';
echo $html;
/*** 来自php教程(www.idcnote.com) ***/
注:关于php 导出word文档,默认为“页面视图”的简单示例的内容就先介绍到这里,更多相关文章的可以留意
代码注释