我想将我的 php 网页导出到 excel。
为此,我发现以下代码有效,但存在问题。
列中的值以 php 中的“00003421”之类的开头,但是当它在 excel 中导出时,它在单元格中仅显示“3421”。它忽略零值。此外,我希望它们采用文本数据类型。
如何按原样(包括零)以纯文本格式导出数据?
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=export.xls");
header("Content-Transfer-Encoding: BINARY");
它是具有 4 列和大约 20,000 行的表格数据。