gpt4 book ai didi

php - 强制使用 PHP 下载文件

转载 作者:IT老高 更新时间:2023-10-28 12:02:22 26 4
gpt4 key购买 nike

我的服务器上有一个 CSV 文件。如果用户点击应该下载的链接,但它会在我的浏览器窗口中打开。

我的代码如下所示

<a href="files/csv/example/example.csv">
Click here to download an example of the "CSV" file
</a>

这是一个普通的网络服务器,我的所有开发工作都在其中。

我尝试了类似的方法:

<a href="files/csv/example/csv.php">
Click here to download an example of the "CSV" file
</a>

现在是我的 csv.php 文件的内容:

header('Content-Type: application/csv');
header('Content-Disposition: attachment; filename=example.csv');
header('Pragma: no-cache');

现在我的问题是它正在下载,但不是我的 CSV 文件。它会创建一个新文件。

最佳答案

.htaccess 解决方案

要强制下载您服务器上的所有 CSV 文件,请添加您的 .htaccess 文件:

AddType application/octet-stream csv

PHP 解决方案

header('Content-Type: application/csv');
header('Content-Disposition: attachment; filename=example.csv');
header('Pragma: no-cache');
readfile("/path/to/yourfile.csv");

关于php - 强制使用 PHP 下载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1465573/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com