php 深入理解strtotime函数的使用详解


Posted in PHP onMay 23, 2013

在前面的<如何使用PHP计算上一个月的今天>一文中, 我们提到strtotime函数在使用strtotime(”-1 month”)求上一个月的今天时会出一些状况,
因此也引出写这篇文章,本文包括如下内容:
•strtotime函数的一些用法
•strtotime函数的实现基本原理
•strtotime(”-1 month”)求值失败的原因
strtotime函数的一些用法
1、 strtotime(”JAN”)和strtotime(”January”)
这两个用法的效果是一样的,都是返回指定月份的今天,如果指定月份没有今天,则顺延到下一个月。 如在2011-03-31计算二月,代码:

echo date("Y-m-d H:i:s", strtotime("feb", strtotime("2011-03-31")));

程序会输出: 2011-03-03 00:00:00。 从表象来看,这个结果也许不一定是我们想要的,但是这也算是一种解决方案,这种方案是由什么决定的呢? strtotime函数在执行月份的计算时只计算了月份,相当于直接将月份设置为指定的月份的值,而如jan,january都会有一个对应内部数值。
2、 first关键字
first是一个辅助型的关键字,它可以与星期,天等可以指定确认值的关键字组合使用,如求2011年的第一个星期天:
echo date("Y-m-d H:i:s", strtotime("second sunday", strtotime("2011-01-01"))), "<br />"; 

在PHP的源码中,对于first与星期和天的组合使用是分开的,即first day对应一个处理操作, 在最终的C实现中,天的值指定为1,即time结构中的d字段指定为1,如下代码:
switch (time->relative.first_last_day_of) {  
         case 1: /* first */  
             time->d = 1;  
             break;  
         case 2: /* last */  
             time->d = 0;  
             time->m++;  
             break;  
     }

3、previous和next关键字
与first类似,previous关键字可以与星期,天组合使用,表示指定时间的前一个星期几或前一天。如下所示代码:
echo date("Y-m-d H:i:s", strtotime("previous sunday", strtotime("2011-02-01"))), "<br />"; 

程序会输出:2011-01-30 00:00:00
程序求2011-02-01的前一个星期天。
next关键字与previous相反,它表示下一个星期几或后一天。
4、 last关键字
last关键字既可以作为上一个,也可以作为最后一个。如求上一个星期天的日期:
echo date("Y-m-d H:i:s", strtotime("last sunday", strtotime("2011-02-05"))), "<br />"; 

程序会输出: 2011-01-30 00:00:00
当程序作为最后时,其应用场景是指定日期所在月的最后一天,相当于date(”t”)的结果。如求2000年2月的最后一天:
echo date("Y-m-d H:i:s", strtotime("last day", strtotime("2000-02-01"))), "<br />"; 

first、previous、last和this关键字在re文件中属于同一组。
5、 back和front关键字
这两个关键字是对一天中的小时的向前和向后操作,其调用格式如下:
echo date("Y-m-d H:i:s", strtotime("back of 24", strtotime("2011-02-01"))), "<br />";  
echo date("Y-m-d H:i:s", strtotime("front of 24", strtotime("2011-02-01"))), "<br />"; 

•back表示将时间设置指定小时值的后一个小时的15分的位置。如果是24点,则算到第二天的0点15分。
•front表示将时间设置指定小时值的前一个小时的45分的位置。如果是0点,则算前一天的23点45分。
上面的代码输出:2011-02-02 00:15:00 2011-02-01 23:45:00。 其中back of和front of后接的数组必须大于等于0并且小于等于24。
strtotime函数的实现基本原理
官方文档对于strtotime函数的说明是这样的:本函数预期接受一个包含美国英语日期格 式的字符串并尝试将其解析为 Unix 时间戳 (自 January 1 1970 00:00:00 GMT 起的秒数),其值相对于 now 参数给出的时间,如果没有提供此参数则用系统当前时间。
这是一个标准PHP内置函数,从PHP4起就已经存在。strtotime函数是以一个扩展的方式加载进来的,在ext/date目录下有其全部实现。 作为一个标准的内置函数,其定义格式也是标准的,如下:
PHP_FUNCTION(strtotime)  
//  处理输入,对于是否有第二个参数有没的处理  
 //  调用相关函数,实现字符串的解析和结果计算  
//  返回结果  
} 

在输入处理中,先识别两个参数都存在的情况并进行处理,如果不是此种状态,则处理第二个参数不存在的情况, 如果都没有,则报错,返回FALSE。
strtotime函数的第一个参数是一个字符串,对于这个字符串,由于其复杂性,PHP使用了其词法解析一样的工具:re2c 。 在/ext/date/lib目录下,从parse_date.re文件我们可以看到其原始的re文件。 当用户以参数的形式传入一个字符串,此字符串将交给此程序处理,针对其字符串的不同,匹配不同的处理函数。 如strtotime(”yesterday”)调用,分析字符串时,将匹配yesterday字符串,此字符串对应函数如下:
'yesterday'  
     {  
         DEBUG_OUTPUT("yesterday");  
         TIMELIB_INIT;  
         TIMELIB_HAVE_RELATIVE();  
         TIMELIB_UNHAVE_TIME();  
         s->time->relative.d = -1;  
         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; /* !0 if the sse member is up to date with the date/time members */  
         unsigned int   tim_uptodate; /* !0 if the date/time members are up to date with the sse member */  
         unsigned int   is_localtime; /*  1 if the current struct represents localtime, 0 if it is in GMT */  
         unsigned int   zone_type;    /*  1 time offset, 
                                       *  3 TimeZone identifier, 
                                       *  2 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; /* 0: the current day should *not* be counted when advancing forwards; 1: 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 Y-M-D differences */  
         timelib_special  special;  
         unsigned int   have_weekday_relative, have_special_relative;  
     } timelib_rel_time;

strtotime(”-1 month”)求值失败的原因
虽然strtotime(”-1 month”)这种方法对于后一个月比前一个月的天数的情况会求值失败,但是从其本质上来说,这并没有错。 PHP这样实现也无可厚非。只是我们的需求决定了我们不能使用这种方法,因此我们称其为求值失败。
我们来看它的实现过程,由于没有第二个参数,所以程序使用默认的当前时间。 第一个参数传入的是-1 month字符串,这个字符串所对应的re文件中的正则为:
reltextunit = (('sec'|'second'|'min'|'minute'|'hour'|'day'|'fortnight'|'forthnight'|'month'|'year') 's'?) | 'weeks' | daytext;  
relnumber = ([+-]*[ /t]*[0-9]+);  
relative = relnumber space? (reltextunit | 'week' ); 

最终relative会对应一系列操作,程序会识别出前面的-1 和后面的month字符串,month对应一种操作类型:TIMELIB_MONTH 。 在此之后,根据识别出来的数字和操作类型执行操作,如下代码:
case TIMELIB_MONTH:  s->time->relative.m += amount * relunit->multiplier; break; 

如上代码,则是直接记录月份的相对值减一。 但是对于类似于3月31号这样的情况,2月没有31号,程序会自动将日期计算到下一个月。
PHP 相关文章推荐
php getimagesize 上传图片的长度和宽度检测代码
May 15 PHP
php中大括号作用介绍
Mar 22 PHP
setcookie中Cannot modify header information-headers already sent by错误的解决方法详解
May 08 PHP
windows下PHP_intl.dll正确配置方法(apache2.2+php5.3.5)
Jan 14 PHP
ThinkPHP 表单自动验证运用示例
Oct 13 PHP
php+mysql实现简单登录注册修改密码网页
Nov 30 PHP
php实现xml转换数组的方法示例
Feb 03 PHP
php面向对象之反射功能与用法分析
Mar 29 PHP
php分页查询mysql结果的base64处理方法示例
May 18 PHP
phpStudy 2016 使用教程详解(支持PHP7)
Oct 18 PHP
关于laravel 日志写入失败问题汇总
Oct 17 PHP
Thinkphp 框架扩展之类库扩展操作详解
Apr 23 PHP
如何使用PHP计算上一个月的今天
May 23 #PHP
解析php二分法查找数组是否包含某一元素
May 23 #PHP
PHP下打开phpMyAdmin出现403错误的问题解决方法
May 23 #PHP
php设计模式之观察者模式的应用详解
May 21 #PHP
php设计模式之命令模式的应用详解
May 21 #PHP
浅谈PHP与C#的值类型指向区别的详解
May 21 #PHP
PHP无法访问远程mysql的问题分析及解决
May 16 #PHP
You might like
也谈截取首页新闻 - 范例
2006/10/09 PHP
php数组对百万数据进行排除重复数据的实现代码
2010/06/08 PHP
效率高的Javscript字符串替换函数的benchmark
2008/08/02 Javascript
JavaScript读取中文cookie时的乱码问题的解决方法
2009/10/14 Javascript
提高网站性能之 如何对待JavaScript
2009/10/31 Javascript
imgAreaSelect 中文文档帮助说明
2011/10/08 Javascript
FireFox下XML对象转化成字符串的解决方法
2011/12/09 Javascript
jQuery获取样式中的背景颜色属性值/颜色值
2012/12/17 Javascript
js判断生效时间不得大于失效时间的思路及代码
2013/04/23 Javascript
Event altKey,ctrlKey,shiftKey属性解析
2013/12/18 Javascript
Javascript中arguments对象的详解与使用方法
2016/10/04 Javascript
详解Angular的数据显示优化处理
2016/12/26 Javascript
vue中mint-ui的使用方法
2018/04/04 Javascript
webpack中的热刷新与热加载的区别
2018/04/09 Javascript
Vue移动端项目实现使用手机预览调试操作
2020/07/18 Javascript
vue 插槽简介及使用示例
2020/11/19 Vue.js
利用Python的装饰器解决Bottle框架中用户验证问题
2015/04/24 Python
python对视频画框标记后保存的方法
2018/12/07 Python
django云端留言板实例详解
2019/07/22 Python
python2使用bs4爬取腾讯社招过程解析
2019/08/14 Python
ipad上运行python的方法步骤
2019/10/12 Python
基于torch.where和布尔索引的速度比较
2020/01/02 Python
pytorch实现对输入超过三通道的数据进行训练
2020/01/15 Python
Tensorflow全局设置可见GPU编号操作
2020/06/30 Python
Python实现Kerberos用户的增删改查操作
2020/12/14 Python
纯CSS3编写的的精美动画进度条(无flash/无图像/无脚本/附源码)
2013/01/07 HTML / CSS
移动web模拟客户端实现多方框输入密码效果【附代码】
2016/03/25 HTML / CSS
继承权公证书
2014/04/09 职场文书
2014年英语教学工作总结
2014/12/17 职场文书
幼儿园推普周活动总结
2015/05/07 职场文书
2015小学五年级班主任工作总结
2015/05/21 职场文书
2015年艾滋病防治工作总结
2015/05/22 职场文书
酒吧七夕情人节宣传语
2015/11/24 职场文书
导游词之上海杜莎夫人蜡像馆
2019/11/22 职场文书
Python常遇到的错误和异常
2021/11/02 Python
Apache Pulsar集群搭建部署详细过程
2022/02/12 Servers