如何在提交时下载在PHP中同时创建的文件


How to download file on submit which had been created on the same time in PHP?

如何在PHP中同时创建的提交按钮上下载csv文件?

使用内容类型标题向浏览器建议必须下载生成的页面:

header('Content-type: text/csv');
// Hint the filename
header('Content-Disposition: attachment; filename="whateveryoulike.csv"');
// echo the contents here
echo $csvString;