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
// Save File $objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007'); header("Content-Disposition: attachment; filename='myFile.docx'"); $objWriter->save("php://output");