php生成word文档的例子

发布时间:2020-11-18编辑:脚本学堂
一个php生成word文档的例子,简单方法生成word文档,有需要的朋友参考下。

例子,php生成word文档。
 

复制代码 代码示例:

<?php
/**
* 生成word文档
*
* @param string $html 内容部分
* @param string $file 文件名称
* @param string $code 当前文件编码,默认是UTF-8
*/ www.jb200.com
function make_word($html,$file,$code='UTF-8')
{
  $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">'.$html. "</html>";
  $code=='UTF-8' and $file = iconv('UTF-8','GB2312',$file);
  file_put_contents($file,$html);
}

$html = '
<table width=600 cellpadding="6" cellspacing="1" bgcolor="#336699">
<tr bgcolor="White">
  <td>脚本学堂</td>
  <td><a href="http://www.jb200.com" target="_blank" >http://www.jb200.com</a></td>
</tr>
<tr bgcolor="White">
  <td colspan=2 >
  CoreMVC是PHP的一款小巧精致的MVC框架,本博客即将推出从零基础学习CoreMVC,<br>
  基本有php基础的人, 2天就可以掌握开发自己的项目
  </td>
</tr>
</table>
';

make_word($html,'脚本学堂.doc');
?>

>>> 您可能感兴趣的文章:
php生成word文档(读取数据库)
php生成word最简单的例子
php使用phpword生成word文档的例子
php生成word文件的简单范例
php生成word的例子
php使用phpword生成word文档