Creating dynamic docx documents

I am looking for a way to create docx files using PHP.

I used PHPWord , but this is not enough for my project. It lacks elements, and the template engine is too simple.

My system should be able to:

  • nesting tables
  • merging table cells
  • loop patterns
  • combination / nested patterns

Are there any good solutions? Does anyone have any experience with this?

Thank!

+5
source share
1 answer

OpenTBS can generate Docx documents in pure PHP using the template technique.

  • nesting tables => YES
  • Table Cell Consolidation => YES
  • looping templates => I'm not sure what it means, but maybe YES
  • / = > XML, DOCX. -XML DOCX DOCX.
+5

All Articles