4.phpword 实现word文件模板字符替换

https://packagist.org/packages/phpoffice/phpword

composer require phpoffice/phpword
composer require phpoffice/phpword:dev-master

https://github.com/PHPOffice/PHPWord

https://phpword.readthedocs.io/en/latest/templates-processing.html

4.phpword 实现word文件模板字符替换_第1张图片
word文字替换
setValue('ketiname','测试题目');
        $templateProcessor->setValue('ketifuzeren','测试题目');
        $templateProcessor->setValue('suozaidanwei','测试题目');
        $templateProcessor->setValue('tianbiaoriqi','测试题目');

     //保存文件
        $templateProcessor->saveAs('static/jianding1.docx');
    }

}
4.phpword 实现word文件模板字符替换_第2张图片
文字替换实现代码
4.phpword 实现word文件模板字符替换_第3张图片
内容模版

你可能感兴趣的:(4.phpword 实现word文件模板字符替换)