以下代码可以用于在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");