PHPWord addTOC is not displaying page numbers

Deadly 提交于 2019-12-20 10:55:50

问题


I'm using https://github.com/PHPOffice/PHPWord to generate a word document. The function addTOC generates an index of pages with titles, but for some reason the page numbers do not display.

// add table of contents
$section->addTOC();

Results in:

If I echo the page numbers on the pages where the titles exist, they display fine. But they don't display in the TOC. I checked to confirm the text isn't white.


回答1:


From PHPWord example in samples dir (https://github.com/PHPOffice/PHPWord/blob/develop/samples/Sample_17_TitleTOC.php), I would tell it is not possible:

echo date('H:i:s'), ' Note: Please refresh TOC manually.', EOL;

I also tried to add the TOC at the end of the document, after titles declarations (when we already know page numbers). But with no success.

EDIT: seems to be a bug: https://github.com/PHPOffice/PHPWord/issues/707



来源:https://stackoverflow.com/questions/33267654/phpword-addtoc-is-not-displaying-page-numbers

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!