PHP完美生成word文档,可加入html元素

jacklove
发布: 2018-05-22 09:18:57
原创
2974人浏览过

php生成word文档在学习中可以经常见到,本篇将介绍一种方法。

PHP生成word文档,网上有很多方法,有调用COM组件生成的,有安装PHP扩展生成的,也有引用第三方类库,如phpword生成的。以下为最简洁的两种方法,无须安装其他,只要你安装了php环境便可以直接生成。

* @desc 方法一、生成word文档

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

* @param $content

 * @param string $fileName

 */function createWord($content='',$fileName='new_file.doc'){    if(empty($content)){        return;

    }

    $content='<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">

            <meta charset="UTF-8" />'.$content.'</html>';    if(empty($fileName)){

        $fileName=date('YmdHis').'.doc';

    }

    $fp=fopen($fileName,'wb');

    fwrite($fp,$content);

    fclose($fp);

}

$str = '<h1 style="color:red;">我是h1</h1><h2>我是h2</h2>';

createWord($str);/**

登录后复制

* @desc 方法二、生成word文档并下载

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

* @param $content

 * @param string $fileName

 */function downloadWord($content, $fileName='new_file.doc'){    if(empty($content)){        return;

    }

    header("Cache-Control: no-cache, must-revalidate");

    header("Pragma: no-cache");

    header("Content-Type: application/octet-stream");

    header("Content-Disposition: attachment; filename=$fileName");

    $html = '<html xmlns:v="urn:schemas-microsoft-com:vml"

         xmlns:o="urn:schemas-microsoft-com:office:office"

         xmlns:w="urn:schemas-microsoft-com:office:word"

         xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"

         xmlns="http://www.w3.org/TR/REC-html40">';

    $html .= '<head><meta charset="UTF-8" /></head>';    echo $html . '<body>'.$content .'</body></html>';

}

$str = '<h4>表头:</h4>

<table border="1">

<tr>

  <th>姓名</th>

  <th>电话</th>

  <th>电话</th>

</tr>

<tr>

  <td>Bill Gates</td>

  <td>555 77 854</td>

  <td>555 77 855</td>

</tr>

</table>';

downloadWord($str, 'abc.doc');

登录后复制

运行后的效果图

立即学习PHP免费学习笔记(深入)”;

PHP生成word文档

4784711-7a03800ceb3042c6.png

PHP生成word文档

4784711-5eacf3bebe929335.png

本篇介绍了php生成word文档的方法,更多相关内容请关注php中文网。

相关推荐:

ThinkPhp缓存原理及使用详解

Discuz!X/数据库 DB:: 函数操作方法

ThinkPHP框架String类详解

以上就是PHP完美生成word文档,可加入html元素的详细内容,更多请关注php中文网其它相关文章!

WPS零基础入门到精通全套教程!
WPS零基础入门到精通全套教程!

全网最新最细最实用WPS零基础入门到精通全套教程!带你真正掌握WPS办公! 内含Excel基础操作、函数设计、数据透视表等

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号