【发布时间】:2021-11-13 08:22:28
【问题描述】:
我已经尝试过使用以下代码。但下载文件已损坏,显示 “我们不支持这种文件格式!”
$fileName = $request->fileName;
// $file_url = public_path() . "/uploads/$fileName";
$file_url = "https://helloworld.net". "/uploads/$fileName";
header('Content-Type: application/octet-stream');
header("Content-Transfer-Encoding: Binary");
header("Content-disposition: attachment; filename=\"" .
basename($file_url) . "\"");
readfile($file_url);
【问题讨论】:
-
为什么不使用文件路径而不是文件url?
标签: php laravel download png downloadfile