gpt4 book ai didi

php - 将 Excel 日期序列转换回可读的日期格式

转载 作者:行者123 更新时间:2023-12-02 01:13:51 26 4
gpt4 key购买 nike

如何使用 phpexcel 和 code igniter 将这个 Excel 数据序列值 41225 转换回日期格式 12-Nov-2012

我尝试了以下方法,但没有成功。

$G74 = $objPHPExcel->getActiveSheet()->getCell('B6')->getValue();

最佳答案

Excel 中的日期存储为自 1900 年 1 月 1 日以来的天数,但由于 1900 年不是闰年而存在一个误差。因此,您可以使用此 hack 创建一个 DateTime 对象(从 1900 年 3 月 1 日起的日期有效):

$n = 41225;
$dateTime = new DateTime("1899-12-30 + $n days");

您可以使用以下格式格式化 DateTime 对象:

echo $dateTime->format("d M Y");

如果您想要包含时间和日期,请在转换之前乘以 86400(一天中的秒数)以获取自 1900 年 1 月 1 日以来的秒数:

$n = 42898.35416666;
$dateTime = new DateTime("1899-12-30 + ". round($n * 86400) . " seconds");

关于php - 将 Excel 日期序列转换回可读的日期格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13963096/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com