以下代码可以用于在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");
登录后复制
以上就是如何使用PHP强制文件下载?的详细内容,更多请关注php中文网其它相关文章!