轉載:PHP時間戳 strtotime()使用方法和技巧

在php中我想要獲取時間戳有多種方法,最經常使用的就是使用time函數與strtotime()函數把日期轉換成時間戳了php

獲取指定的年月日轉化爲時間戳:
pHP時間戳函數獲取指定日期的unix時間戳 strtotime('2012-12-7')函數

<?php     echo strtotime('2012-12-7'); //結果:1354838400 ?>

 說明:返回2012年12月7日0點0分0秒時間戳。
 .net

 

將當前年月日轉化爲時間戳:PHP時間戳函數獲取當前日期的unix時間戳,
示例以下:unix

<?php     echo $time=intval(time()); ?>

 注:返回當前時間 年月日時分秒的時間戳。blog

 

將時間戳轉化爲年月日:源碼

<?php
    echo date("Y-m-d H:i:s",intval(time()));
?>

 例:ast

<?php
/*
from:http://www.jb51.net
@date:2013-02-22
*/
echo 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";
?>

 PHP時間戳函數獲取英文文本日期時間
便於比較,使用date將當時間戳與指定時間戳轉換成系統時間
(1)打印明天此時的時間戳strtotime(」+1 day」)
當前時間:echo date(」Y-m-d H:i:s」,time()) 結果:2009-01-22 09:40:25
指定時間:echo date(」Y-m-d H:i:s」,strtotime(」+1 day」)) 結果:2009-01-23 09:40:25
(2)打印昨天此時的時間戳strtotime(」-1 day」)
當前時間:echo date(」Y-m-d H:i:s」,time()) 結果:2009-01-22 09:40:25
指定時間:echo date(」Y-m-d H:i:s」,strtotime(」-1 day」)) 結果:2009-01-21 09:40:25
(3)打印下個星期此時的時間戳strtotime(」+1 week」)
當前時間:echo date(」Y-m-d H:i:s」,time()) 結果:2009-01-22 09:40:25
指定時間:echo date(」Y-m-d H:i:s」,strtotime(」+1 week」)) 結果:2009-01-29 09:40:25
(4)打印上個星期此時的時間戳strtotime(」-1 week」)
當前時間:echo date(」Y-m-d H:i:s」,time()) 結果:2009-01-22 09:40:25
指定時間:echo date(」Y-m-d H:i:s」,strtotime(」-1 week」)) 結果:2009-01-15 09:40:25
(5)打印指定下星期幾的時間戳strtotime(」next Thursday」)
當前時間:echo date(」Y-m-d H:i:s」,time()) 結果:2009-01-22 09:40:25
指定時間:echo date(」Y-m-d H:i:s」,strtotime(」next Thursday」)) 結果:2009-01-29 00:00:00
(6)打印指定上星期幾的時間戳strtotime(」last Thursday」)
當前時間:echo date(」Y-m-d H:i:s」,time()) 結果:2009-01-22 09:40:25
指定時間:echo date(」Y-m-d H:i:s」,strtotime(」last Thursday」)) 結果:2009-01-15 00:00:00
以上PHP時間戳函數示例可知源碼天空,strtotime能將任何英文文本的日期時間描述解析爲Unix時間戳,咱們結合mktime()或date()格式化日期時間獲取指定的時間戳,實現所須要的日期時間。class

相關文章
相關標籤/搜索