Answer the question
In order to leave comments, you need to log in
How to create a Word document from a template?
I use PHP Word, I need to upload a word document according to a specific template. https://blog.mayflower.de/6699-phpword-create-docu... found an example of using my own template on the site, code
$templateProcessor = new \PhpOffice\PhpWord\TemplateProcessor('Template.docx');
$templateProcessor->setValue('date', date("d-m-Y"));
$templateProcessor->setValue('name', 'John Doe');
$templateProcessor->setValue(
['city', 'street'],
['Sunnydale, 54321 Wisconsin', '123 International Lane']);
$templateProcessor->saveAs('MyWordFile.docx');
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question