我使用php将csv导出到移动版Safari。我尝试下载csv时收到此错误。
有没有人有任何想法?
ini_set('memory_limit', '2048M');
header("Cache-Control: must-revalidate");
header("Pragma: must-revalidate");
header("Content-type: application/vnd.ms-excel");
header("Content-disposition: attachment; filename=Activity.csv");
header("Expires: 0");
答案 0 :(得分:0)
我将内容类型改为此...解决了它
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");