Auto download the file attachment using PHPWord

前端 未结 7 1752
悲哀的现实
悲哀的现实 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");
    
    0 讨论(0)
提交回复
热议问题