【发布时间】:2020-04-29 10:25:40
【问题描述】:
文件资源 - fopen('php://output')
标题列表:
Content-Type: application/csv
Content-Disposition: attachment; filename="test.csv"
Cache-Control: max-age=0
Expires: 0
Cache-Control: must-revalidate
Pragma: public
我如何下载:
ob_clean();
readfile("php://output");
exit;
ob_get_contents() 之前 readfile 不为空,我也写入文件的数据。
但是加载的文件是空的。为什么
【问题讨论】:
标签: php header http-headers export-to-csv response-headers