如何在php中设置下载路径

时间:2016-10-31 08:24:49

标签: laravel-5.3

我是网络开发人员。

DownloadController.php

$local_file = 'file.zip';
$download_file = 'd:\temp\download.zip';
if(file_exists($local_file)) {
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename="'.basename($local_file).'"');
    header('Expires: 0');
    header('Cache-Control: must-revalidate');
    header('Pragma: public');
    header('Content-Length: ' . filesize($local_file));
    readfile($download_file);
}

我希望下载' file.zip'和下载的路径' d:\ temp \ download.zip'

任何人都可以帮助我! 谢谢你。

1 个答案:

答案 0 :(得分:0)

您可以使用以下代码下载文件:

return response()->download($pathToFile);

OR

return response()->download($pathToFile, $name, $headers)
  

download方法可用于生成响应,该响应强制用户的浏览器在给定路径上download文件。下载方法接受文件名作为方法的第二个参数,这将确定下载文件的用户看到的文件名。最后,您可以将HTTP标头数组作为方法的第三个参数传递:

Docs