如何用PHP生成word文档
程序员文章站
2022-06-16 19:19:15
...
PHP操作Word文档的方法有很多,这里为大家提供一种高效方法,要比服务器安装com组件效率高的多,因为 word的com组件还要打开客户端。
首先保证你的服务器安装Microsoft Office
本文以下载素材火的特效页面,作为word输出内容。当然你也可以自定义字符串内容,比如表格、列表、标题等。
若是有图片的话,咱们必须转换成mht格式。
PHP生成word,并即时下载代码:
$url = file_get_contents("http://www.sucaihuo.com/js");
$fileContent = getWordDocument($url);
$fileName = iconv("utf-8", "GBK", '素材火' . '_' . $id . '_' . rand(100, 999));
header("Content-Type: application/doc");
header("Content-Disposition: attachment; filename=" . $fileName . ".doc");
echo $fileContent;
PHP在线生成word文档演示地址:http://www.sucaihuo.com/php/529.html
首先保证你的服务器安装Microsoft Office
本文以下载素材火的特效页面,作为word输出内容。当然你也可以自定义字符串内容,比如表格、列表、标题等。
若是有图片的话,咱们必须转换成mht格式。
PHP生成word,并即时下载代码:
$url = file_get_contents("http://www.sucaihuo.com/js");
$fileContent = getWordDocument($url);
$fileName = iconv("utf-8", "GBK", '素材火' . '_' . $id . '_' . rand(100, 999));
header("Content-Type: application/doc");
header("Content-Disposition: attachment; filename=" . $fileName . ".doc");
echo $fileContent;
PHP在线生成word文档演示地址:http://www.sucaihuo.com/php/529.html
PHP在线生成word文档.zip ( 4.14 KB 下载:90 次 )
AD:真正免费,域名+虚机+企业邮箱=0元
推荐阅读
-
php在程序中将网页生成word文档并提供下载的代码
-
ASP生成Word文档的又一方法
-
winform 替换word文档中的字段(包含图片添加),生成导出PDF文件(也可是word文件)
-
C#生成Word文档代码示例
-
php Smarty模板生成html文档的方法
-
php将数据库中所有内容生成静态html文档的代码
-
PoiDemo【Android将表单数据生成Word文档的方案之二(基于Poi4.0.0)】
-
Aspose.Words for .NET动态生成word文档中的图片或水印
-
php 备份数据库代码(生成word,excel,json,xml,sql)
-
php导出word文档与excel电子表格的简单示例代码