0

所以我有这个代码:

$output = '
<table class="sticky-enabled">
 <thead><tr><th>Text0</th><th>Text1</th><th>Text2</th> </tr></thead>
<tbody id="">
 <tr class="odd"><td>7</td><td>texttt</td><td>texttt</td> </tr>
</table>';



    header("Content-type: application/vnd.ms-excel;");
    header("Cache-Control: no-store, no-cache");
    header("Content-Disposition: attachment; filename=file.xls");
    print chr(255) . chr(254) . mb_convert_encoding($output, 'UTF-16LE', 'UTF-8');
    exit;

这个东西会下载一个带有表格的Excel文件。

但是有两个问题:

  1. 当我用 Excel 打开它时,它会显示您尝试打开的文件格式与扩展错误不同
  2. 当我尝试保存它时,默认文件扩展名是 .htm 而不是 xls

有没有办法操纵标题等以解决这两个问题?

4

1 回答 1

0
header('Content-type : text/csv');

并将其打印为逗号分隔值文件。您不能只将 HTML 表格打印到 .xls 或 .xlsx

于 2013-01-28T17:08:55.527 回答