Auto download the file attachment using PHPWord

前端 未结 7 1765
悲哀的现实
悲哀的现实 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:28

    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");
    

提交回复
热议问题