Auto download the file attachment using PHPWord

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

    A simple solution for Laravel based on @user3214824 answer.

    // ...    
    $objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($PHPWord, 'Word2007');
    $doc_name = 'fileName.docx';
    $objWriter->save($doc_name); // saving in the public path just for testing
    
    return response()->download(public_path($doc_name))->deleteFileAfterSend(true);
    

提交回复
热议问题