PHP strtotime函数用法实现原理和源码剖析
发布时间:2022-07-25 13:15 所属栏目:121 来源:互联网
导读:这篇文章主要介绍了PHP strtotime函数用法、实现原理和源码分析,本文讲解了strtotime函数的一些用法、strtotime函数的实现基本原理、strtotime(-1 month)求值失败的原因等内容,需要的朋友可以参考下 源码位置:/ext/date/php_date.c 代码如下: /* {{{ proto
这篇文章主要介绍了PHP strtotime函数用法、实现原理和源码分析,本文讲解了strtotime函数的一些用法、strtotime函数的实现基本原理、strtotime(“-1 month”)求值失败的原因等内容,需要的朋友可以参考下 源码位置:/ext/date/php_date.c 代码如下: /* {{{ proto int strtotime(string time [, int now ]) Convert string representation of date and time to a timestamp */ PHP_FUNCTION(strtotime) { char *times, *initial_ts; int time_len, error1, error2; struct timelib_error_container *error; long preset_ts = 0, ts; timelib_time *t, *now; timelib_tzinfo *tzi; tzi = get_timezone_info(TSRMLS_C); if (zend_parse_parameters_ex(ZEND_PARSE_PARAMS_QUIET, ZEND_NUM_ARGS() TSRMLS_CC, “sl”, ×, &time_len, &preset_ts) != FAILURE) { /* We have an initial timestamp */ now = timelib_time_ctor(); initial_ts = emalloc(25); snprintf(initial_ts, 24, “@%ld UTC”, preset_ts); t = timelib_strtotime(initial_ts, strlen(initial_ts), NULL, DATE_TIMEZONEDB, php_date_parse_tzfile_wrapper); /* we ignore the error here, as this should never fail */ 因此也引出写这篇文章,本文包括如下内容: 1).strtotime函数的一些用法 2).strtotime函数的实现基本原理 3).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"))), " "; 在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"))), " "; 程序会输出: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"))), " "; 程序会输出: 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"))), " "; first、previous、last和this关键字在re文件中属于同一组。 5、 back和front关键字 这两个关键字是对一天中的小时的向前和向后操作,其调用格式如下: 代码如下: echo date("Y-m-d H:i:s", strtotime("back of 24", strtotime("2011-02-01"))), " "; echo date("Y-m-d H:i:s", strtotime("front of 24", strtotime("2011-02-01"))), " "; 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。 (编辑:ASP站长网) |
相关内容
网友评论
推荐文章
热点阅读