這篇文章介紹的內容是關於php 時間函數strtotime 使用詳解,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
定義和用法strtotime()
strtotime() 函數將任何英文文本的日期時間描述解析為Unix 時間戳記。語法
strtotime(time,now)
參數 | 說明 |
---|---|
說明
此函數預期接受一個包含美國英文日期格式的字串並嘗試將其解析為Unix 時間戳記(自January 1 1970 00:00:00 GMT 起的秒數),其值相對於now 參數給出的時間,如果沒有提供此參數,則用系統當前時間。
此函數將使用 TZ 環境變數(如果有的話)來計算時間戳記。自 PHP 5.1.0 起有更容易的方法來定義時區用於所有的日期/時間函數。此程序在 date_default_timezone_get() 函數頁面中有說明。
// #1 echo strtotime("now"); // 获取当前时间戳 echo date('Y-m-d H:i:s', strtotime("now")); // #2 echo strtotime("2015-06-11 10:11:00"); // 获取指定的时间戳 echo date('Y-m-d H:i:s', strtotime("2015-06-11 10:11:00")); // #3 echo strtotime("3 October 2005"); // 获取指定的时间戳[等同于strtotime("2005-10-03")] echo date('Y-m-d H:i:s', strtotime("3 October 2005")); // #4 echo strtotime("+5 hours"); // 当前时间加五个小时 [对比#1] echo date('Y-m-d H:i:s', strtotime("+5 hours")); // #5 echo strtotime("+1 day"); // 当前时间加1天 [对比#1] echo date('Y-m-d H:i:s', strtotime("+1 day")); // #6 echo strtotime("+2 days"); // 当前时间加多天 名词变复数 [对比#1] echo date('Y-m-d H:i:s', strtotime("+2 days")); // #7 echo strtotime("+1 week 3 days 7 hours 5 seconds"); // 当前时间加 1周 3天 7小时 5秒 [对比#1] echo date('Y-m-d H:i:s', strtotime("+1 week 3 days 7 hours 5 seconds")); // #8 echo strtotime("next Monday"); // 当前时间下一个周一 echo date('Y-m-d H:i:s', strtotime("next Monday")); // #9 echo strtotime("last Sunday"); // 当前时间前一个周日 echo date('Y-m-d H:i:s', strtotime("last Sunday")); // #10 echo strtotime("-1 day",strtotime("2018-07-01 10:11:00")); // 给定时间 减去一天 echo date('Y-m-d H:i:s', strtotime("-1 day",strtotime("2018-07-01 10:11:00")));
時間名詞:
年year 複數years
月month 複數months
#週week 複數weeks
##日day 複數days
時hour 複數hours
#分second 複數seconds
#秒minute 複數minutes
上一個last
下一個next ##一月January
#二月February
三月March
#四月April
##五月May
############################################################################################################################################################################# ###六月June #########七月July ######八月August
#九月September
#十月October
十一月November
以上是php 時間函數strtotime 使用詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!