我想使用PHP将格式为Y-m-d或d-m-Y的正常日期转换为Excel日期格式。
在此答案中:https://stackoverflow.com/a/15137090/9289047 仅当您从Excel格式更改为普通日期格式时,该公式才有效。反过来呢?
他们给出的公式:
$UNIX_DATE = "06-05-2015"; //assuming this is the date that needs to be converted
$EXCEL_DATE = 25569 + ($UNIX_DATE / 86400);
echo gmdate(round($EXCEL_DATE));