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");