composer require phpoffice/phpword
说明人:${user} 电话:${email}
参考地址php
<?php // 根据模板生成用户信息word $templateProcessor = new TemplateProcessor("./a.docx"); $templateProcessor->setValue('user', '周起'); $templateProcessor->setValue('email', '445864742@qq.com'); $templateProcessor->saveAs("./b.docx");