php中時間函數date及常用的時間計算圖文詳解

墨辰丷
發布: 2023-03-27 13:30:01
原創
1788 人瀏覽過

本篇文章主要介紹了php中時間函數date及常用的時間計算的相關知識,具有很好的參考價值。以下跟著小編一起來看下吧

曾在專案中需要使用到今天,昨天,本週,本月,本季度,今年,上週上月,上季度等等時間戳,趁最近時間比較充足,因此計畫對php的相關時間知識點進行總結學習

1,閱讀php手冊date函數

常用時間函數:

     date()驗證一個時間是否正確

    date_default_timezone_get()取得目前腳本所使用的時區

##" 幫助所用時區  ini_set()也可以滿足,或修改設定檔

    date_sunrise()  date_sunset() 傳回給定的日期和地點的日出時間和日落時間

#    。一個日期,下邊會有詳細內容

    getdate() 取得日期時間的相關資訊

    gettimeofday()取得目前時間的相關資訊

    idate(

#      日期格式化為整數,但只接受一個字元作為參數

    microtime()傳回目前的時間戳記和秒數

    mktime()取得一個日期的時間戳

#    strtotime()將英文文字的日期秒數解析為時間戳

2,重要函數詳解

date()格式化一個日期

    string date( string $format [, int $timestamp] )

#    d     第幾天  ,此為具有前導零,例如01,02

    D    星期中的第幾天,也就是英文星期幾的單字縮寫,Mon到Sun

   小幾星期,此為完整的英文格式, Sunday到Saturday

    N    用數字表示星期幾,1為星期一,7為星期日

     月   月後綴數

    w    星期中的第幾天,使用數字表示,0為星期天,6為星期六

    z     月

    F    月份,完整的英文單字

    m        

#        活動 我們 我們的   n    數字所表示的月份,沒有前導0

    t    給定月份所應有的天數

    L    年月是否為邐年,為#1 年 年 年 年 年月或為#1 年 年〰1 年 年 年 年 年月。  4位數字表示的年份

    y    2位數字表示的年份

    a       小寫    a       小寫 的值

##的值#     # #    g    12小時制,沒有前導0

    G    24小時制,沒有前導0 製#    24小時制,沒有前導0 列導#    24小時。   H    24小時制,有前導0

    i    具有前導0的分鐘數

    s    秒數,具有前導0

    u    毫秒,date()函數返回的是000000格式的

    e    時區標識

    I    是否為夏令時,是為1,不是為0# #      本機位的時#  c    2017-05-08T 15: 22:21 00:00 格式的時間

    U    從1970開始至今的秒數

idate()函數詳解

與date的差異是此函數只可以傳遞一個參數,date()可以傳遞多個參數

    B    Internet time

        月中的第幾天# #    h    12小時制的時間

    H    24小時制的時間

     24小時制的時間

     24小時制的時間

##              若啟用夏令時返回1,否則為0

L    如果是閏年則回傳1,否則回傳0    m     月數 」數 本月的總天數    U    從1970起的秒數

    w    星期中的第幾天

    W     年份中的第幾個星期,  W     年份中的第幾個星期,從星期一開始# 1]位元數字

    Y    年份4位數字

    z    年份中的第幾天偏移# #     年份中的第幾天偏移# #     年份中的第幾天數# #   

#strtotime()函數銜接

用法範例

#

      strtotime ("now");

      strtotime ("10 September 2017");

      strtotime ("+1 day");

      strtotime ("+1 week");

      strtotime ("+1 week 2 days 4 hours 2 seconds");

      strtotime ("next Thursday");
      strtotime ("last Monday");
登入後複製

##3,常用時間總計

$times = [];
function makeTime(){
  //获取今日开始时间戳和结束时间戳
  $beginToday=mktime(0,0,0,date('m'),date('d'),date('Y'));
  $endToday=mktime(0,0,0,date('m'),date('d')+1,date('Y'))-1;
  $times['today']['begin'] = $beginToday;
  $times['today']['end'] = $endToday;

  //获取昨日起始时间戳和结束时间戳
  $beginYesterday=mktime(0,0,0,date('m'),date('d')-1,date('Y'));
  $endYesterday=mktime(0,0,0,date('m'),date('d'),date('Y'))-1;
  $times['yesterday']['begin'] = $beginYesterday;
  $times['yesterday']['end'] = $endYesterday;

  //获取上周起始时间戳和结束时间戳
  $beginLastweek=mktime(0,0,0,date('m'),date('d')-date('w')+1-7,date('Y'));
  $endLastweek=mktime(23,59,59,date('m'),date('d')-date('w')+7-7,date('Y'));
  $times['lastWeek']['begin'] = $beginLastweek;
  $times['lastWeek']['end'] = $endLastweek;

  //获取本月起始时间戳和结束时间戳
  $beginThismonth=mktime(0,0,0,date('m'),1,date('Y'));
  $endThismonth=mktime(23,59,59,date('m'),date('t'),date('Y'));
  $times['thisMonth']['begin'] = $beginThismonth;
  $times['thisMonth']['end'] = $endThismonth;

  //获取本周开始时间和结束时间,此例中开始时间为周一
  $defaultDate = date('Y-m-d');
  $first = 1;
  $w = date('w',strtotime($defaultDate));
  $beginWeek = strtotime("$defaultDate-" . ($w?$w-$first:6) . 'days');
  $endWeek = $beginWeek + 6*24*3600-1;
  $times['thisWeek']['begin'] = $beginWeek;
  $times['thisWeek']['end'] = $endWeek;

  //获取上月的起始时间戳和结束时间戳
  $beginLastmonth=mktime(0,0,0,date('m')-1,1,date('Y'));
  $endLastmonth=mktime(23,59,59,date('m')-1,date('t'),date('Y'));
  $times['LastMonth']['begin'] = $beginLastmonth;
  $times['LastMonth']['end'] = $endLastmonth;

  //获取今年的起始时间和结束时间
  $beginThisyear = mktime(0,0,0,1,1,date('Y'));
  $endThisyear = mktime(23,59,59,12,31,date('Y'));
  $times['thisYear']['begin'] = $beginThisyear;
  $times['thisYear']['end'] = $endThisyear;

  //获取上年的起始时间和结束时间
  $beginLastyear = mktime(0,0,0,1,1,date('Y')-1);
  $endLastyear = mktime(23,59,59,12,31,date('Y')-1);
  $times['lastYear']['begin'] = $beginLastyear;
  $times['lastYear']['end'] = $endLastyear;

  //获取本季度开始时间和结束时间
  $season = ceil((date('n'))/3);//当月是第几季度
  $beginThisSeason = mktime(0, 0, 0,$season*3-3+1,1,date('Y'));
  $endThisSeason = mktime(23,59,59,$season*3,date('t',mktime(0, 0 , 0,$season*3,1,date("Y"))),date('Y'));
  $times['thisSeason']['begin'] = $beginThisSeason;
  $times['thisSeason']['end'] = $endThisSeason;

  //获取上季度的起始时间和结束时间
  $beginLastSeason = mktime(0, 0, 0,($season-1)*3-3+1,1,date('Y'));
  $endLastSeason = mktime(23,59,59,($season-1)*3,date('t',mktime(0, 0 , 0,$season*3,1,date("Y"))),date('Y'));
  $times['lastSeason']['begin'] = $beginLastSeason;
  $times['lastSeason']['end'] = $endLastSeason;

  return $times;
}
$times = makeTime();
登入後複製

目前是我之前用到的时间戳,后期还会积累汇总,避免重复造轮子。

相关推荐:

php date函数介绍与使用方法详解

关于PHP MySQL Update语句的相关内容

PHP验证码类ValidateCode

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

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板