将HTML表格内容导出为xlsx格式

时间:2019-08-19 09:53:40

标签: php html excel export-to-excel xlsx

我使用PHP + jQuery导出html表内容。当我单击导出按钮时,excel文件已成功生成为xls格式。我想将文件生成为xlsx格式。

$FileName="my-file.xls";
header('Content-Type: application/force-download');
header('Content-disposition: attachment; filename='.$FileName.'');
header("Pragma: ");
header("Cache-Control: ");
echo $_REQUEST['tableData'];
exit();

添加jQuery

var clone_val = $(".tblExport").clone();
$("#tData").val($('<span><style> .textFormat {  mso-number-format:"\@"; } .numberFormat { mso-number-format:"0\.00" }</style>').append (clone_val).html());
$("#excel-export-form").submit();

表内容使用jQuery存储在具有属性id="tData" name="tableData"的输入框中。 当我将文件名更改为my-file.xlsx时,会生成损坏的xlsx文件。还尝试了数据表excel导出,但是它不支持多个标头。

1 个答案:

答案 0 :(得分:3)

您可以使用php库执行此操作。我更喜欢使用PhpSpreadsheet与excel一起使用。