Posted by examples:
$fileName = './protected/data/template.docx'; $word = new PHPWord(); $word = $word->loadTemplate($fileName); $word->setValue('post', '123'); $h2d_file_uri = tempnam('', 'htd'); $word->save($h2d_file_uri); In the document, pasted text and ${post} .
This post is not always replaced with the value I need. And I noticed that if template.docx is opened in WordPad and saved (it will say that some docx data will be lost, because not everything is supported), then post is replaced.
What is the matter, how to be?