php - 如何强制下载文件?

2022-08-30 18:11:45

我想在我的一个网站上的每个视频下面添加一个“下载此文件”功能。我需要强制用户下载文件,而不仅仅是链接到它,因为有时这会开始在浏览器中播放文件。问题是,视频文件存储在单独的服务器上。

有什么办法可以强制下载PHP?


答案 1

你可以尝试这样的事情:

$file_name = 'file.avi';
$file_url = 'http://www.myremoteserver.com/' . $file_name;
header('Content-Type: application/octet-stream');
header("Content-Transfer-Encoding: Binary"); 
header("Content-disposition: attachment; filename=\"".$file_name."\""); 
readfile($file_url);
exit;

我刚刚测试了它,它对我有用。

请注意,为了能够读取远程 URL,您需要启用fopen_wrappersreadfile


答案 2

经测试的下载.php文件是

function _Download($f_location, $f_name){
  $file = uniqid() . '.pdf';

  file_put_contents($file,file_get_contents($f_location));

  header('Content-Description: File Transfer');
  header('Content-Type: application/octet-stream');
  header('Content-Length: ' . filesize($file));
  header('Content-Disposition: attachment; filename=' . basename($f_name));

  readfile($file);
}

_Download($_GET['file'], "file.pdf");

和下载链接是

<a href="download.php?file=http://url/file.pdf"> Descargar </a>

推荐