Php导出表excel

时间:2014-10-22 15:30:42

标签: php excel export

我有这个代码将html表导出为ex​​cel。

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列)的表,而不是强制下载,表将在浏览器中显示。

可能会发生什么?

1 个答案:

答案 0 :(得分:3)

请检查PHP: Exporting Data to Excel。它可能对你有帮助。