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中文網其他相關文章!