一,取得指定日期的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
結果: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結果: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()格式化日期時間獲取指定的時間戳,實現所需的日期時間.