我在php下载excel表时遇到问题(代码如下)。我有一个日期字段,但在数据库日期是“YYYY-MM-DD”格式,我将此格式转换为“d / m / Y”。
然后下载并打开excel表,到目前为止表单很好。当我们使用“格式画家”工具(找到剪切和复制按钮下方)时,日期会将日期格式转换为某个数字,有时会转换为某些有趣的角色。
如何使用“Format Painter” - 首先选择非日期列,然后按“Format Painter”按钮,然后点击日期字段列,它会将某些日期转换为数字。
代码低于
$filename = "Report_name.xls";
if ( $html == "" )
{
echo "<br>ERROR: No input provided";
exit;
}
@header ("Content-type: application/x-msexcel");
@header("Content-Disposition: attachment; filename=$filename");
@header("Expires: 0");
print "$header\n$html";