在用户访问网页时强制下载文件在许多情况下都是一个有用的功能。 PHP 提供了多种方法来实现此目的,包括利用 file_get_contents 函数。
但是,当尝试使用 header(location) 下载文件时,您可能会遇到以下问题:重定向停滞。要解决这个问题,请考虑使用 readfile() 函数。
$file_url = 'http://www.myremoteserver.com/file.exe'; header('Content-Type: application/octet-stream'); header("Content-Transfer-Encoding: Binary"); header("Content-disposition: attachment; filename=\"" . basename($file_url) . "\""); readfile($file_url);
此外,请记住根据文件类型指定适当的内容类型(例如 application/zip、application/pdf)。这可确保浏览器不会触发另存为对话框。
以上是如何使用 PHP 强制下载文件?的详细内容。更多信息请关注PHP中文网其他相关文章!