Laravel 5:下载后下载PDF和Word文档时出错

时间:2016-12-28 04:59:47

标签: php laravel pdf download ms-word

我使用下面的代码下载文件(我的文件可以是.pdf或Ms word)。下载任何文件后,该文件出错,无法打开/查看。

$file= "uploads/files/heng_kaknika.docx";
$headers = array('Content-Type: application/pdf', 'Content-Type: application/msword',);
return response()->download($file, 'new_name.docx', $headers);

如何解决这些问题?

1 个答案:

答案 0 :(得分:1)

尝试以下代码,从download()中移除标题并进行检查。由于L5没有标题。见document

$file= "uploads/files/heng_kaknika.docx";
return response()->download($file, 'new_name.docx');