Guest User

Untitled

a guest
Nov 21st, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <?php
  2. error_reporting (E_ALL | E_STRICT);
  3. @ini_set ('display_errors', 'on');
  4. require_once '../../../../vendor/autoload.php';
  5.  
  6. $my_content = $_POST['html_content'];
  7.  
  8. $phpWord = new PhpOfficePhpWordPhpWord();
  9. $section = $phpWord->addSection();
  10.  
  11. PhpOfficePhpWordSharedHtml::addHtml($section, $my_content);
  12.  
  13. header('Content-Type: application/octet-stream');
  14. header('Content-Disposition: attachement;filename="teste.docx"');
  15. $objWriter = PhpOfficePhpWordIOFactory::createWriter($phpWord, 'Word2007');
  16. $objWriter->save('php://output');
  17. ?>
Add Comment
Please, Sign In to add comment