gpt4 book ai didi

php - 对 1970 年之前的日期使用 strtotime

转载 作者:IT王子 更新时间:2023-10-29 00:32:01 26 4
gpt4 key购买 nike

我在 mysql 中有一个文本列,它以 yyyy-mm-dd 格式存储一个日期值。现在,在我的 php 页面中,我使用此代码解析为日期值。

date("F j, Y", strtotime($row['value']));

现在,我刚刚读到 strtotime() 仅在 1970 年 1 月 1 日之后解析值。我在该日期之前有很多日期值。有解决办法吗?我不想改变我的数据库结构。

最佳答案

来自documentation for strtotime() :

strtotime() has a range limit between Fri, 13 Dec 1901 20:45:54 GMT and Tue, 19 Jan 2038 03:14:07 GMT; although prior to PHP 5.1.0 this range was limited from 01-01-1970 to 19-01-2038 on some operating systems (Windows).

您运行的是什么版本的 PHP?在什么平台上?也许是时候升级了。

如果您要处理 1901 年 12 月 13 日到 2038 年 1 月 19 日范围之外的日期,请考虑使用 PHP 的 DateTime 对象,它可以处理范围更广的日期。

程序:

$date = date_create($row['value']);
if (!$date) {
$e = date_get_last_errors();
foreach ($e['errors'] as $error) {
echo "$error\n";
}
exit(1);
}

echo date_format($date, "F j, Y");

面向对象:

try {
$date = new DateTime($row['value']);
} catch (Exception $e) {
echo $e->getMessage();
exit(1);
}

echo $date->format("F j, Y");

关于php - 对 1970 年之前的日期使用 strtotime,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2871264/

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