PHP中大於2038年時間戳記的問題處理方案_php技巧

來源:互聯網
上載者:User

PHP有效時間戳記典型範圍是格林威治時間 1901 年 12 月 13 日 20:45:54    到 2038 年 1 月 19 日 03:14:07。(此範圍符合 32    位有符號整數的最小值和最大值)。不過在 PHP 5.1 之前此範圍在某些系統(如    Windows)中限制為從 1970 年 1 月 1 日到 2038 年 1 月 19 日。 

64位系統就不會受影響了,如果在32系統可以使用new DateTime解決

複製代碼 代碼如下:

$date = '2090-10-01';
$datetime = new DateTime($date);
echo '<p>正常時間: ', $datetime->format('Y-m-d H:i'), '</p>';
echo '<p>時間溢出: ', date('Y-m-d H:i', strtotime($date)), '<p>';

由於現在伺服器中使用win2003的還是挺多的,所以這個解決方案的適用性還是挺廣,希望大家能夠喜歡。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.