date_default_timezone_set('PRC');//設置中華人民共和國標準時間函數
strtotime — 將任何英文文本的日期時間描述解析爲 Unix 時間戳
格式:int strtotime ( string $time [, int $now ] )
本函數預期接受一個包含美國英語日期格式的字符串並嘗試將其解析爲 Unix 時間戳(自 January 1 1970 00:00:00 GMT 起的秒數),其值相對於 now 參數給出的時間,若是沒有提供此參數則用系統當前時間。
本函數將使用 TZ 環境變量(若是有的話)來計算時間戳。自 PHP 5.1.0 起有更容易的方法來定義時區用於全部的日期/時間函數。此過程在 date_default_timezone_get() 函數頁面中有說明。
Note : 若是給定的年份是兩位數字的格式,則其值 0-69 表示 2000-2069,70-100 表示 1970-2000。
參數
time
被解析的字符串,格式根據 GNU » 日期輸入格式 的語法。在 PHP 5.0 以前,time 中不容許有毫秒數,自 PHP 5.0 起能夠有可是會被忽略掉。
now
用來計算返回值的時間戳。 該參數默認值是當前時間time(),也能夠設置爲其餘時間的時間戳(我一直忽略的一個功能啊,慚愧)
返回值: 成功則返回間戳,不然返回 FALSE 。在 PHP 5.1.0 以前本函數在失敗時返回 -1,後面版本返回false.
strtotime的第一個參數能夠是咱們常見的英文時間格式,好比「2008-8-20」或「10 September 2000 」等等。也能夠是以參數now爲基準的時間描述,好比「+1 day」等等。
下面是後一種方式的可以使用參數清單,其中「當前時間」是指strtotime第二個參數now的值,默認爲當前時間
1.月,日英文名及其經常使用縮寫清單:
january,february,march,april,may,june,july,august,september,sept,october,november,december,
sunday,monday,tuesday,tues,wednesday,wednes,thursday,thur,thurs,friday,saturday
2.時間參數和祥細描述:
am : the time is before noon 上午
pm : the time is noon or later 下午
year: one year; for example, 「next year」 年,好比「next year」表明明年
month : one month; for example, 「last month」 月,好比「last month」表明上一月
fortnight : two weeks; for example, 「a fortnight ago」 兩週,好比「a fortnight ago」表明兩週前
week : one week 周
day: a day 天
hour: an hour 小時
minute : a minute 分鐘
min : same as minute 同「minute」
second : a second 秒
sec : same as second 同「second」
3.相關和順序說明:
+n/-n :以當前時間算,加個減指定的時間,好比」+1 hour」是指當前時間加一小時
ago :time relative to now; such as 「24 hours ago」 以當前時間往前算,好比」24 hours ago」表明「24小時前」
tomorrow : 24 hours later than the current date and time 以當前時間(包括日期和時間)爲標準,明天同一時間
yesterday : 24 hours earlier than the current date and time 以當前時間(包括日期和時間)爲標準,昨天同一時間
today : the current date and time 當前時間(包括日期和時間)
now : the current date and time 當前時間(包括日期和時間)
last : modifier meaning 「the preceding」; for example, 「last tuesday」 表明「上一個」,好比「last tuesday」表明「上週二同一時間」
this : the given time during the current day or the next occurrence of the given time; for example, 「this 7am」 gives the timestamp for 07:00 on the current day, while 「this week」 gives the timestamp for one week from the current time 當天的指定時間或下面一個時間段的時間戳,好比「this 7am」給出當天7:00的時間戳,而「this week」給出的是從當前時間開始的一整週的時間戳,也就是當前時間(經本人測試:strtotime('this week')=strtotime('now'));
next : modifier meaning the current time value of the subject plus one; for example, 「next hour」 當前時間加上指定的時間,好比「next hour」是指當前時間加上一小時,即加3600
//先到這,下面的還沒時間翻譯
first : ordinal modifier, esp. for months; for example, 「May first」 (actually, it's just the same as next)
third : see first (note that there is no 「second」 for ordinality, since that would conflict with the second time value)
fourth : see first
fifth : see first
sixth : see first
seventh : see first
eighth : see first
ninth : see first
tenth : see first
eleventh : see first
twelfth : see first
4.時區描述:
gmt : Greenwich Mean Time
ut : Coordinated Universal Time
utc : same as ut
wet : Western European Time
bst : British Summer Time
wat : West Africa Time
at : Azores Time
ast : Atlantic Standard Time
adt : Atlantic Daylight Time
est : Eastern Standard Time
edt : Eastern Daylight Time
cst : Central Standard Time
cdt : Central Daylight Time
mst : Mountain Standard Time
mdt : Mountain Daylight Time
pst : Pacific Standard Time
pdt : Pacific Daylight Time
yst : Yukon Standard Time
ydt : Yukon Daylight Time
hst : Hawaii Standard Time
hdt : Hawaii Daylight Time
cat : Central Alaska Time
akst : Alaska Standard Time
akdt : Alaska Daylight Time
ahst : Alaska-Hawaii Standard Time
nt : Nome Time
idlw : International Date Line West
cet : Central European Time
met : Middle European Time
mewt : Middle European Winter Time
mest : Middle European Summer Time
mesz : Middle European Summer Time
swt : Swedish Winter Time
sst : Swedish Summer Time
fwt : French Winter Time
fst : French Summer Time
eet : Eastern Europe Time, USSR Zone 1
bt : Baghdad Time, USSR Zone 2
zp4 : USSR Zone 3
zp5 : USSR Zone 4
zp6 : USSR Zone 5
wast : West Australian Standard Time
wadt : West Australian Daylight Time
cct : China Coast Time, USSR Zone 7
jst : Japan Standard Time, USSR Zone 8
east : Eastern Australian Standard Time
eadt : Eastern Australian Daylight Time
gst : Guam Standard Time, USSR Zone 9
nzt : New Zealand Time
nzst : New Zealand Standard Time
nzdt : New Zealand Daylight Time
idle : International Date Line East
在PHP中有個叫作strtotime的函數。strtotime 實現功能:獲取某個日期的時間戳,或獲取某個時間的時間戳。strtotime 將任何英文文本的日期時間描述解析爲Unix時間戳[將系統時間轉化成unix時間戳]
一,獲取指定日期的unix時間戳
strtotime("2009-1-22") 示例以下:
1.echo strtotime("2009-1-22")
結果:1232553600
說明:返回2009年1月22日0點0分0秒時間戳
二,獲取英文文本日期時間
示例以下:
便於比較,使用date將當時間戳與指定時間戳轉換成系統時間
(1)打印明天此時的時間戳strtotime("+1 day")
當前時間:
1.echo date("Y-m-d H:i:s",time())
結果:2009-01-22 09:40:25
指定時間:
1.echo date("Y-m-d H:i:s",strtotime("+1 day"))
結果:2009-01-23 09:40:25
(2)打印昨天此時的時間戳strtotime("-1 day")
當前時間:
1.echo date("Y-m-d H:i:s",time())
結果:2009-01-22 09:40:25
指定時間:
1.echo date("Y-m-d H:i:s",strtotime("-1 day"))
結果:2009-01-21 09:40:25
(3)打印下個星期此時的時間戳strtotime("+1 week")
當前時間:
1.echo date("Y-m-d H:i:s",time())
結果:2009-01-22 09:40:25
指定時間:
1.echo date("Y-m-d H:i:s",strtotime("+1 week"))
結果:2009-01-29 09:40:25
(4)打印上個星期此時的時間戳strtotime("-1 week")
當前時間:
1.echo date("Y-m-d H:i:s",time())
結果:2009-01-22 09:40:25
指定時間:
1.echo date("Y-m-d H:i:s",strtotime("-1 week"))
結果:2009-01-15 09:40:25
(5)打印指定下星期幾的時間戳strtotime("next Thursday")
當前時間:
1.echo date("Y-m-d H:i:s",time())
結果:2009-01-22 09:40:25
指定時間:
1.echo date("Y-m-d H:i:s",strtotime("next Thursday"))
結果:2009-01-29 00:00:00
(6)打印指定上星期幾的時間戳strtotime("last Thursday")
當前時間:
1.echo date("Y-m-d H:i:s",time())
結果:2009-01-22 09:40:25
指定時間:
1.echo date("Y-m-d H:i:s",strtotime("last Thursday"))
結果:2009-01-15 00:00:00
以上示例可知,strtotime能將任何英文文本的日期時間描述解析爲Unix時間戳,咱們結合mktime()或date()格式化日期時間獲取指定的時間戳,實現所須要的日期時間。 測試