Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rotexdegba/674d87e50189661529f226bb85d1052e to your computer and use it in GitHub Desktop.
Save rotexdegba/674d87e50189661529f226bb85d1052e to your computer and use it in GitHub Desktop.
phpword-view-template-for-promis2.0
<?php
$phpword_writer_wrapper = new \Promis2\PhpWordWriterWrapper();
// New Word document
$phpWord = new \PhpOffice\PhpWord\PhpWord();
// Do stuff with $phpWord
// ............
// ............
// Save file
$phpword_writer_wrapper->write($phpWord, basename(__FILE__, '.php'));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment