phpWord - Cannot add PreserveText in Section

痞子三分冷 提交于 2019-12-04 14:56:10
Pinguin895

I had the same Problem (also asked here) and for me loading the document worked after I removed all mail merge fields from it. Maybe this works for you, too

For using preserve text in Section add to method checkValidity() in file PhpOffice/PhpWord/Element/AbstractContainer.php new rules.

For example :

in line 214: 'PreserveText' => array('Header', 'Footer', 'Cell') add Section to array

in line 224: 'PreserveText' => array(array('Cell'), array('Header', 'Footer')) add Section too for sub containers.

Now, you should write

$section->addPreserveText("Total {PAGE} pages.");
标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!