1.问题:
您尝试让用户从您的服务器下载文件,但文件没有提示“另存为”对话框。
2.原因:
标头中的内容类型声明不正确。
3.解决方案:
确保将内容类型标头设置为 application/octet-stream 以进行文件下载:
header('Content-Type: application/octet-stream');
4.其他提示:
5。示例代码:
$quoted = sprintf('"%s"', addcslashes(basename($file), '"\')); $size = filesize($file); header('Content-Description: File Transfer'); header('Content-Type: application/octet-stream'); header('Content-Disposition: attachment; filename=' . $quoted); header('Content-Transfer-Encoding: binary'); header('Connection: Keep-Alive'); header('Expires: 0'); header('Cache-Control: must-revalidate, post-check=0, pre-check=0'); header('Pragma: public'); header('Content-Length: ' . $size); readfile($file);
以上是如何使用'header()”强制 PHP 文件下载?的详细内容。更多信息请关注PHP中文网其他相关文章!