以下代码可用于强制文件从PHP下载。
<?php header('Content-type: text/javascript'); header('Content-Disposition: attachment; filename="file.js"'); readfile(file that is downloaded.js'); //可以打印以进行验证 ?>
注意 –必须在显示任何输出之前完成此操作,否则文件也将具有其他操作的输出(可能无关紧要)。
可以使用的另一种方法是使用.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");