PHP documentation提供了一个很好的例子:
$file = 'monkey.gif';
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');
header('Pragma: public');
header('Content-Length: ' . filesize($file));
ob_clean();
flush();
readfile($file);
exit;
}
?>
编辑(回复评论,解释)
header('Content-Description: File Transfer');
不要在浏览器中显示,而是传输文件.
header('Content-Type: application/octet-stream');
header('Content-Transfer-Encoding: binary');
文件是二进制文件.
浏览器通常下载二进制文件,除非它们可以显示它们.
header('Content-Disposition: attachment; filename='.basename($file));
使下载对话框显示正确的文件名.
注意:您可以使用任何文件名.
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
浏览器不应缓存文件.
在动态内容的情况下,缓存可能会造成麻烦.
header('Content-Length: ' . filesize($file));
将正确的文件大小发送到浏览器,
否则浏览器无法估计传输时间.
ob_clean();
flush();
确保在下载开始之前将标头发送到浏览器.
readfile($file);
将文件发送到浏览器.
exit;
完成:)