码迷,mamicode.com
首页 > Web开发 > 详细

php根据word模板生成新的word文件

时间:2019-01-31 13:17:42      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:地址   office   生成   ice   根据   .com   template   save   ocx   

原文地址:http://www.niu12.com/article/16

php使用phpword将word内容变量替换

a.安装phpword

 composer require phpoffice/phpword

b.当前目录下a.docx,假设word内容需要替换的变量为

说明人:${user}
电话:${email}

c.php改写word内容

参考地址

<?php
// 根据模板生成用户信息word
$templateProcessor = new TemplateProcessor("./a.docx");
$templateProcessor->setValue(‘user‘, ‘周起‘);
$templateProcessor->setValue(‘email‘, ‘445864742@qq.com‘);
$templateProcessor->saveAs("./b.docx");

php根据word模板生成新的word文件

标签:地址   office   生成   ice   根据   .com   template   save   ocx   

原文地址:https://www.cnblogs.com/zhouqi666/p/10340833.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!