本文介绍利用 phpword (Packagist) 将word文档 .docx 扩展文件转成html文件。
Tip:.doc 扩展文件转成html文件应该有问题
在 Packagist 搜索 phpword, 在第一列会出现 phpoffice/phpword
包名称,点击查看详情,里面会有使用和安装介绍。
安装环境
- php: ^5.3.3 || ^7.0
- ext-xml: *
- zendframework/zend-escaper: ^2.2
- phpoffice/common: ^0.2.9
除了php版本要求,其他在安装phpword时候会自行安装
安装phpword
我使用安装是,在项目目录中,执行命令行,安装最新的稳定版
1 | composer require phpoffice/phpword |
安装结束后,在项目目录中vendor
会有phpoffice/phpword
文件夹
使用phpword把.docx转成.html
1 | require_once 'vendor/autoload.php';// 引入自动加载文件,如果在成熟框架中请忽略 |