Rumah  >  Artikel  >  pembangunan bahagian belakang  >  在php程序中将网页生成word文档并提供下载的实例代码

在php程序中将网页生成word文档并提供下载的实例代码

PHP中文网
PHP中文网asal
2017-03-22 14:06:514350semak imbas

在php程序文件中生成内容到word文档中并提供下载功能的实现代码,需要的朋友可以参考下

在这篇文章中主要解决两个问题:
1:在php中如何把html中的内容生成到word文档中
2:php把html中的内容生成到word文档中时,不居中显示问题,即会默认按照web视图进行显示。
3:php把html中的内容生成到word文档中时,相关样式不兼容问题
正文: 

echo &#39;<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> 
<script src="includes/js/ztree/js/jquery-1.4.4.min.js" type="text/javascript"></script> 
</head>&#39;; 
echo &#39;<body><table class="table_dayin"> 
<caption class="table_caption">&#39;; 
echo "数字化教学系统电子备课稿<br> 
<span>学科 <em style="border-bottom: 1px solid #545454;">语文</em>学校 <em style="border-bottom: 1px solid #545454;">实验中学</em></span> 
</caption>"; 
echo &#39;</table></body></html>&#39;; 
ob_start(); //打开缓冲区 
header("Cache-Control: public"); 
Header("Content-type: application/octet-stream"); 
Header("Accept-Ranges: bytes"); 
if (strpos($_SERVER["HTTP_USER_AGENT"],&#39;MSIE&#39;)) { 
header(&#39;Content-Disposition: attachment; filename=test.doc&#39;); 
}else if (strpos($_SERVER["HTTP_USER_AGENT"],&#39;Firefox&#39;)) { 
Header(&#39;Content-Disposition: attachment; filename=test.doc&#39;); 
} else { 
header(&#39;Content-Disposition: attachment; filename=test.doc&#39;); 
} 
header("Pragma:no-cache"); 
header("Expires:0"); 
ob_end_flush();//输出全部内容到浏览器

注:以上代码部分提供了在php程序文件中生成内容到word文档中并提供下载功能。
针对第2个问题,下载到本地的word文档打开后显示默认按照web视图进行显示的问题:如下图:
按照默认web视图显示:

如果按照正常的页面视图进行显示的话,需要在头部添加一行xml标示进行设置(蓝色代码部分):b2a0af5a8fd26276da50279a1c63a57a2facf99ecb5ae18e033c998b2258c8a5cbfa6c478d298339139d506edd72ca79Print8bcb4f45e4725f668e29c18d94c1940521118965b89073f60271ef4a3b5d3c58,添加后下载到本地的word文档打开后显示如下图:

 

针对第三个问题就是有一些样式不兼容问题,比如顶部的大标题下面的相关属性的下划线标注显示:

  我们在html中的样式中添加了border-bottom: 1px solid #545454;这个样式(蓝色代码部分),即:6c660fef1c3fd8d6ec5c87be3fff56a8,但是下划线还是没有显示,因为在word中不识别。如下图:

 

解决方法就是按照word识别的下标样式进行更改,即:4eb70a743ae76baddb430f505bac500d,更改为这个样式后,即在下载到本地的word文档打开后就有下划线标示显示了。

 

授之于鱼,不如授之于渔,我把我的关于这个解决样式不兼容的解决方法给大家分享一下:

   一:找个web版在线编辑器,然后在里面随便输入几个文字,然后添加下划线标示

   二:然后点击编辑器上面的查看源代码按钮,可以看到刚才添加的那个下划线标示的属性即为text-decoration: underline;而不是html中的样式标示:border-bottom: 1px solid #545454;

   好了,针对以上相关问题就到这里,如有问题请大家提出来,我们共同讨论解决哈。

相关文章:

php使用phpword生成word文档

php导出生成word的方法

PHP生成word文档的三种实现方式

Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn
Artikel sebelumnya:PHP 调试工具XdebugArtikel seterusnya:php实现二路归并排序