强制使用PHP下载文件我的服务器上有个CSV文件。如果一个用户点击一个链接,它应该下载,但相反,它打开在我的浏览器窗口。我的代码如下所示<a href="files/csv/example/example.csv">
Click here to download an example of the "CSV" file</a>这是一个普通的Web服务器,在这里我有我所有的开发工作。我试过这样的方法:<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文件。它创建一个新文件。
3 回答
一只甜甜圈
TA贡献1836条经验 获得超5个赞
<a href="example.csv" download>download not open it</a>
大话西游666
TA贡献1817条经验 获得超14个赞
header("Content-disposition: attachment");
编辑filename=example.csv
- 3 回答
- 0 关注
- 390 浏览
添加回答
举报
0/150
提交
取消