熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

php 深入理解strtotime函數

2022-06-13   來源: PHP編程 

  •strtotime函數的一些用法
•strtotime函數的實現基本原理
•strtotime(” month”)求值失敗的原因
strtotime函數的一些用法
strtotime(”JAN”)和strtotime(”January”)
這兩個用法的效果是一樣的都是返回指定月份的今天如果指定月份沒有今天則順延到下一個月 如在計算二月代碼:

 代碼如下:
echo date("Ymd H:i:s" strtotime("feb" strtotime("")));

  
程序會輸出: :: 從表象來看這個結果也許不一定是我們想要的但是這也算是一種解決方案這種方案是由什麼決定的呢? strtotime函數在執行月份的計算時只計算了月份相當於直接將月份設置為指定的月份的值而如janjanuary都會有一個對應內部數值
first關鍵字
first是一個輔助型的關鍵字它可以與星期天等可以指定確認值的關鍵字組合使用如求年的第一個星期天

 代碼如下:
echo date("Ymd H:i:s" strtotime("second sunday" strtotime(""))) "<br />";

  
在PHP的源碼中對於first與星期和天的組合使用是分開的即first day對應一個處理操作 在最終的C實現中天的值指定為即time結構中的d字段指定為如下代碼

 代碼如下:
switch (time>relativefirst_last_day_of) {
case : /* first */
time>d = ;
break;
case : /* last */
time>d = ;
time>m++;
break;
}

  
previous和next關鍵字
與first類似previous關鍵字可以與星期天組合使用表示指定時間的前一個星期幾或前一天如下所示代碼

 代碼如下:
echo date("Ymd H:i:s" strtotime("previous sunday" strtotime(""))) "<br />";

  
程序會輸出 ::
程序求的前一個星期天
next關鍵字與previous相反它表示下一個星期幾或後一天
last關鍵字
last關鍵字既可以作為上一個也可以作為最後一個如求上一個星期天的日期

代碼如下:
echo date("Ymd H:i:s" strtotime("last sunday" strtotime(""))) "<br />";

  
程序會輸出 ::
當程序作為最後時其應用場景是指定日期所在月的最後一天相當於date(”t”)的結果如求月的最後一天

復制代碼 代碼如下:
echo date("Ymd H:i:s" strtotime("last day" strtotime(""))) "<br />";

  
firstpreviouslast和this關鍵字在re文件中屬於同一組
back和front關鍵字
這兩個關鍵字是對一天中的小時的向前和向後操作其調用格式如下

 代碼如下:
echo date("Ymd H:i:s" strtotime("back of " strtotime(""))) "<br />";
echo date("Ymd H:i:s" strtotime("front of " strtotime(""))) "<br />";

  
•back表示將時間設置指定小時值的後一個小時的分的位置如果是則算到第二天的
•front表示將時間設置指定小時值的前一個小時的分的位置如果是則算前一天的
上面的代碼輸出 :: :: 其中back of和front of後接的數組必須大於等於並且小於等於
strtotime函數的實現基本原理
官方文檔對於strtotime函數的說明是這樣的本函數預期接受一個包含美國英語日期格 式的字符串並嘗試將其解析為 Unix 時間戳 (自 January :: GMT 起的秒數)其值相對於 now 參數給出的時間如果沒有提供此參數則用系統當前時間
這是一個標准PHP內置函數從PHP起就已經存在strtotime函數是以一個擴展的方式加載進來的在ext/date目錄下有其全部實現 作為一個標准的內置函數其定義格式也是標准的如下

 代碼如下:
PHP_FUNCTION(strtotime)
// 處理輸入對於是否有第二個參數有沒的處理
// 調用相關函數實現字符串的解析和結果計算
// 返回結果
}

  
在輸入處理中先識別兩個參數都存在的情況並進行處理如果不是此種狀態則處理第二個參數不存在的情況 如果都沒有則報錯返回FALSE
strtotime函數的第一個參數是一個字符串對於這個字符串由於其復雜性PHP使用了其詞法解析一樣的工具rec 在/ext/date/lib目錄下從parse_datere文件我們可以看到其原始的re文件 當用戶以參數的形式傳入一個字符串此字符串將交給此程序處理針對其字符串的不同匹配不同的處理函數 如strtotime(”yesterday”)調用分析字符串時將匹配yesterday字符串此字符串對應函數如下

 代碼如下:
yesterday
{
DEBUG_OUTPUT("yesterday");
TIMELIB_INIT;
TIMELIB_HAVE_RELATIVE();
TIMELIB_UNHAVE_TIME();
s>time>relatived = ;
TIMELIB_DEINIT;
return TIMELIB_RELATIVE;
}

  
這裡有幾個關鍵的結構體

 代碼如下:
typedef struct Scanner {
int fd;
uchar *lim *str *ptr *cur *tok *pos;
unsigned int line len;
struct timelib_error_container *errors;
struct timelib_time *time;
const timelib_tzdb *tzdb;
} Scanner;
typedef struct timelib_time {
timelib_sll y m d; /* Year Month Day */
timelib_sll h i s; /* Hour mInute Second */
double f; /* Fraction */
int z; /* GMT offset in minutes */
char *tz_abbr; /* Timezone abbreviation (display only) */
timelib_tzinfo *tz_info; /* Timezone structure */
signed int dst; /* Flag if we were parsing a DST zone */
timelib_rel_time relative;
timelib_sll sse; /* Seconds since epoch */
unsigned int have_time have_date have_zone have_relative have_weeknr_day;
unsigned int sse_uptodate; /* ! if the sse member is up to date with the date/time members */
unsigned int tim_uptodate; /* ! if the date/time members are up to date with the sse member */
unsigned int is_localtime; /* if the current struct represents localtime if it is in GMT */
unsigned int zone_type; /* time offset
* TimeZone identifier
* TimeZone abbreviation */
} timelib_time;
typedef struct timelib_rel_time {
timelib_sll y m d; /* Years Months and Days */
timelib_sll h i s; /* Hours mInutes and Seconds */
int weekday; /* Stores the day in next monday */
int weekday_behavior; /* : the current day should *not* be counted when advancing forwards; : the current day *should* be counted */
int first_last_day_of;
int invert; /* Whether the difference should be inverted */
timelib_sll days; /* Contains the number of *days* instead of YMD differences */
timelib_special special;
unsigned int have_weekday_relative have_special_relative;
} timelib_rel_time;

  
strtotime(” month”)求值失敗的原因
雖然strtotime(” month”)這種方法對於後一個月比前一個月的天數的情況會求值失敗但是從其本質上來說這並沒有錯 PHP這樣實現也無可厚非只是我們的需求決定了我們不能使用這種方法因此我們稱其為求值失敗
我們來看它的實現過程由於沒有第二個參數所以程序使用默認的當前時間 第一個參數傳入的是 month字符串這個字符串所對應的re文件中的正則為

 代碼如下:
reltextunit = ((sec|second|min|minute|hour|day|fortnight|forthnight|month|year) s?) | weeks | daytext;
relnumber = ([+]*[ /t]*[]+);
relative = relnumber space? (reltextunit | week );

  
最終relative會對應一系列操作程序會識別出前面的 和後面的month字符串month對應一種操作類型TIMELIB_MONTH 在此之後根據識別出來的數字和操作類型執行操作如下代碼

 代碼如下:
case TIMELIB_MONTH: s>time>relativem += amount * relunit>multiplier; break;

  
如上代碼則是直接記錄月份的相對值減一 但是對於類似於號這樣的情況月沒有程序會自動將日期計算到下一個月


From:http://tw.wingwit.com/Article/program/PHP/201311/21347.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.