程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php時間戳轉換的示例

php時間戳轉換的示例

編輯:關於PHP編程

    PHP獲取“今天的時間戳”,再通過“今天”獲取昨天和明天0點和23:59:59的時間戳

    以下例子得出結果:

     代碼如下:

    array(3) { ["yesterday"]=> array(2) { [0]=> int(1395874800) [1]=> int(1395961199) } ["today"]=> array(2) { [0]=> int(1395961200) [1]=> int(1396047599) } ["tomorrow"]=> array(2) { [0]=> int(1396047600) [1]=> int(1396133999) } }

     代碼如下:

    <?php

     

    //昨天,今天和明天的日期轉換    

    //($startstr 今天開始時間戳)

    //返回(昨天,今天和明天)的0點和23點59分59秒

    function alldaytostr($startstr) {

     $oneday_count = 3600 * 24;  //一天有多少秒

     //明天

     $tomorrow_s = $startstr + $oneday_count;    //明天開始

     $tomorrow_e = $tomorrow_s + $oneday_count - 1;  //明天結束

     //昨天

     $yesterday_s = $startstr - $oneday_count;  //昨天開始

     $yesterday_e = $startstr - 1;   //昨天結束

     //今天結束

     $today_e = $tomorrow_s - 1;

     //昨天、今天和明天 0點和當天23點59分59秒合並成數組

     $allday_array = array('yesterday' => array($yesterday_s, $yesterday_e),

      'today' => array($startstr, $today_e),

      'tomorrow' => array($tomorrow_s, $tomorrow_e));

     return $allday_array;

    }

    //當天開始時間

    $btime = date('Y-m-d'.'00:00:00',time());

    //轉換成“開始”的時間戳

    $btimestr = strtotime($btime);

    var_dump(alldaytostr($btimestr));

     

    ?>

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved