I\'m trying to use PHPWord to generate word documents. And the document can be generated successfully. But there is a problem where my generated word document will be saved
This is work for me:
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'Word2007', $download = true); header("Content-Disposition: attachment; filename='File.docx'"); $objWriter->save("php://output");