5

我正在生成一个充满数据的 HTML 表。他们需要它是一个可编辑的电子表格,尽管他们可以保存和编辑。

我目前完全按照他们想要的方式拥有它,但是作为 HTML 表格,无论如何我可以将其转换为他们可以下载的 excel 电子表格吗?

谢谢!!

4

3 回答 3

5

这是我使用的,还没有让我失望:

 header('Cache-Control: no-store, no-cache, must-revalidate');     // HTTP/1.1
 header('Cache-Control: pre-check=0, post-check=0, max-age=0');    // HTTP/1.1
 header ("Pragma: no-cache");
 header("Expires: 0");
 header('Content-Transfer-Encoding: none');
 header('Content-Type: application/vnd.ms-excel;');                 // This should work for IE & Opera
 header("Content-type: application/x-msexcel");                     // This should work for the rest
 header('Content-Disposition: attachment; filename="'.basename('yourFilenameHere.xls').'"');

'yourFilenameHere.xls' 显然应该改变:)

于 2009-10-15T17:02:51.787 回答
4

您可以使用Spreadsheet_Excel_Writer PEAR 包来获得可下载的文件作为输出。

于 2009-10-15T17:02:26.360 回答
0

输出与逗号分隔值 (CSV) 相同的数据。大多数电子表格应用程序都会认识到这一点。

于 2009-10-15T17:02:08.417 回答