以下程式碼可以用於在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中文網其他相關文章!