首頁  >  文章  >  後端開發  >  php 時間函數strtotime 使用詳解

php 時間函數strtotime 使用詳解

不言
不言原創
2018-04-20 15:01:426225瀏覽

這篇文章介紹的內容是關於php  時間函數strtotime 使用詳解,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下

定義和用法strtotime() 
strtotime() 函數將任何英文文本的日期時間描述解析為Unix 時間戳記。

語法 
strtotime(time,now)

參數 說明
### ################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 

########################################################## ##十二月December###                ######相關建議:#########php 使用strtotime取得上個月、下個月​​、本月的日期代碼實例##### #######php中strtotime函數詳解######

以上是php 時間函數strtotime 使用詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn