Edit .doc or .docx file using php

后端 未结 5 1456
攒了一身酷
攒了一身酷 2021-02-07 14:24

I have to modify the uploaded .doc or .docx file in php. I googled but i only found how to read that. I want the word file as it is and put text at the bottom of that MS Word fi

5条回答
  •  半阙折子戏
    2021-02-07 15:01

    I'm the developer of PHPWord. You can use the PHPWord_Template Class to open an existing DOCX File and then replace some text marks with your individual text.

    Alternatively you can open the DOCX file with the ZipArchive extension and then read/write every xml File (document.xml, header.xml, footer.xml, ...) you want. This method is nothing else than the PHPWord_Template class. ;)

提交回复
热议问题