strtotime() 和 1970 年之前的日期
由于范围有限,使用 strtotime() 处理 1970 年之前的日期可能会带来挑战。要解决此问题,请检查您的 PHP 版本和平台。如有必要,请考虑升级。
或者,为了更灵活地处理更广泛的日期范围,请考虑使用 PHP 的 DateTime 对象。它们允许日期远远超出 1901 年 12 月 13 日至 2038 年 1 月 19 日的范围。
过程方法:
$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");
OOP 方法:
try { $date = new DateTime($row['value']); } catch (Exception $e) { echo $e->getMessage(); exit(1); } echo $date->format("F j, Y");
以上是如何使用 PHP 的 `strtotime()` 和替代方案处理 1970 年之前的日期?的详细内容。更多信息请关注PHP中文网其他相关文章!