我有这个代码将html表导出为excel。
print $obj->methodThatReturnTable();
header("Content-type: application/vnd.ms-excel");
header("Content-type: application/force-download");
header("Content-Disposition: attachment; filename=$fileName");
header("Pragma: no-cache");
它适用于有几行的表,但现在我创建了一个包含近1000行(8列)的表,而不是强制下载,表将在浏览器中显示。
可能会发生什么?