当前位置 : 主页 > 网络编程 > PHP >

如何使用PHP强制文件下载?

来源:互联网 收集:自由互联 发布时间:2023-11-13
以下代码可以用于在PHP中强制下载文件。 ?php header(Content-type: text/javascript); header(Content-Disposition: attachment; filename=file.js); readfile(file that is downloaded.js); //This can be printed for verification purpo

以下代码可以用于在PHP中强制下载文件。

<?php
   header('Content-type: text/javascript');
   header('Content-Disposition: attachment; filename="file.js"');
   readfile(file that is downloaded.js'); //This can be printed for verification purpose
?>

注意 - 这需要在显示任何输出之前完成,否则文件也会有其他操作的输出(这可能不相关)。

另一种方法可以使用的方法是使用 .htaccess 解决方案。该方法可以强制下载服务器上的所有文件,并且可以将其添加到.htaccess文件中。这已在下面得到证明 -

AddType application/octet-stream csv
header('Content-Type: application/csv');
header('Content-Disposition: attachment; filename=name of csv file');
header('Pragma: no-cache');
readfile("path-to-csv-file");
网友评论