在谷歌搜索时,我发现在输出以不同文件格式生成的 excel 时需要设置两组不同的标题。
例如
对于类型“Excel5”的标题是:
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");;
header("Content-Disposition: attachment;filename=$filename");
header("Content-Transfer-Encoding: binary ");
对于“Excel2007”类型的标题是:
header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet');
header('Content-Disposition: attachment;filename="myfile.xlsx"');
header('Cache-Control: max-age=0');
我的问题:是否需要为每种文件类型设置不同的标题,因为还有其他文件类型还有CSV、HTML和PDF?