PHP的時間戳記以及日期之間如何進行轉換

來源:互聯網
上載者:User
PHP中時間戳記與日期之間的轉換是通過data()函數以及strtotime()函數實現的,data函數實現時間戳記轉日期,strtotime函數實現日期轉時間戳記。

時間戳記轉日期 date()

  • time()

<?phpvar_dump(time()); //擷取目前時間戳 int(1502245603)
  • date(format,timestamp)

format 必需。規定時間戳記的格式。
timestamp 可選。規定時間戳記。預設是目前時間和日期

時間戳記轉日期,可以用date(‘Y-m-s h:i:s’, 具體時間戳記來實現).

Y :年(四位元)大寫
m : 月(兩位元,首位不足補0) 小寫
d :日(兩位元,首位不足補0) 小寫
H:小時 帶有首位零的 24 小時小時格式
h :小時 帶有首位零的 12 小時小時格式
i :帶有首位零的分鐘
s :帶有首位零的秒(00 -59)
a:小寫午前和午後(am 或 pm)

大小寫區分非常重要,例如以下例子:

var_dump(date('Y-m-d H:i:s', 1502204401)); //H 24小時制 2017-08-08 23:00:01 var_dump(date('Y-m-d h:i:s', 1502204401)); //h 12小時制 2017-08-08 11:00:01

日期轉時間戳記 strtotime()

strotime是非常靈活聰明的函數,可以識別中文,英文,數字,我們來感受一下

<?phpecho strtotime("now"), "\n";echo strtotime("10 September 2000"), "\n";echo strtotime("+1 day"), "\n";echo strtotime("+1 week"), "\n";echo strtotime("+1 week 2 days 4 hours 2 seconds"), "\n";echo strtotime("next Thursday"), "\n";echo strtotime("last Monday"), "\n";echo strtotime("20170808 23:00:01"), "\n";?>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.