我有一个包含 csv 数据的字符串。我可以以某种方式提供该字符串作为 csv 文件下载而不之前保存它吗?
谢谢
<?php
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"my-data.csv\"");
$data="col1, col start and end col2,col3, \n";
$data .= "second line data";
echo $data;
?>
上面的代码将在访问者浏览器中显示一个窗口,要求将文件保存在本地计算机或由合适的应用程序打开。
header("Content-Disposition", "attachment;filename=myfilename.csv");