自动下载的正确内容类型标题是什么?

时间:2018-07-12 17:38:04

标签: php mime-types content-type

我在按钮上具有下载功能,单击不会下载文件,电子表格的内容显示在页面内。这仅在IOS设备上发生。我已经尝试过将其他内容类型用于.xls或强制下载,但是行为是相同的。

header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment;filename="planilha.xlsx"');
header('Cache-Control: max-age=1');

header ('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header ('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
header ('Cache-Control: cache, must-revalidate');
header ('Pragma: public'); // HTTP/1.0

$objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
$objWriter->save('php://output');

0 个答案:

没有答案