Auto download the file attachment using PHPWord

前端 未结 7 1767
悲哀的现实
悲哀的现实 2020-12-18 22:44

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

7条回答
  •  心在旅途
    2020-12-18 23:30

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

提交回复
热议问题