所以我使用这篇文章来生成和保护我网站上的一些下载链接
我遇到的问题是脚本可以正常工作,而不是大文件。例如,一个 1GB 的文件可以完美下载,而一个 7GB 的文件则不能。
评论中有人提到大量下载可能会导致这种情况。
我的标题现在看起来像这样:
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="' . basename($fakefilename) . '"');
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . filesize($realfilename));
ob_clean();
flush();
readfile($realfilename);
exit;
本指南建议它们看起来更像这样:
header("Content-Disposition: attachment; filename=" . urlencode($file));
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-Description: File Transfer");
header("Content-Length: " . filesize($file));
flush(); // this doesn't really matter.
$fp = fopen($file, "r");
while (!feof($fp))
{
echo fread($fp, 65536);
flush(); // this is essential for large downloads
}
fclose($fp);
为了我的一生,我无法让它发挥作用。这里的任何人都熟悉 HTTP 标头并且无法下载大文件而不是小文件?
任何帮助表示赞赏。提前致谢!