我正在使用PHP.net网站上的代码强制下载链接:
if (file_exists($file)) {
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
我将此代码放在名为“download.php”的文件中,并从页面(<a href="download.php?file=abc.doc">Click</a>
)调用它。
它适用于所有浏览器,但在Safari上,它打开的窗口('download.php')在下载/打开过程中和之后保持打开状态。在其他浏览器中它会立即消失。有没有其他人遇到过这个问题,如果有的话,是否有任何关于如何解决它的建议?
答案 0 :(得分:1)
我尝试了这一点,似乎在所有浏览器中都能正常工作。尝试此代码,考虑到Safari和IE需要更多字符作为标题发送:
#$file = 'load.php';
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($file));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
for($i = 0; $i < 40000; $i++) {
echo ' '; // extra spaces
}
flush();
usleep(50000);
exit;