search

Home  >  Q&A  >  body text

关于PHP中时间计算的"-1 month"?

今天,也就是10月31号,执行一下代码:

echo date('Ym', strtotime("-1 month"));

返回的结果是201410,是不是说明类似strtotime("-1 month")是不可信的?

定义了时区。

php -v

PHP 5.4.33-1~dotdeb.0 (cli) (built: Sep 19 2014 12:00:21)
Copyright (c) 1997-2014 The PHP Group
Zend Engine v2.4.0, Copyright (c) 1998-2014 Zend Technologies

天蓬老师天蓬老师2817 days ago311

reply all(4)I'll reply

  • PHP中文网

    PHP中文网2017-04-10 15:06:40

    case TIMELIB_MONTH:  s->time->relative.m += amount * relunit->multiplier; break;
    
    月份直接减1 ,当前日期 10月 31号 减一变成  9月31号 即是 10月1号
    

    reply
    0
  • PHPz

    PHPz2017-04-10 15:06:40

    这个是php bug,你可以指定月的开始时间。
    $base = strtotime(date('Y-m',time()) . '-01 00:00:01');
    echo date('m/Y',strtotime('-1 month', $base));

    reply
    0
  • 阿神

    阿神2017-04-10 15:06:40

    不定义时区真的大丈夫么?定义时区后我这边是正常的,PHP5.5环境。

    date_default_timezone_set("Asia/Shanghai");
    echo date("Y-m", strtotime("-1 month"));
    

    可能真的如 @美丽的格调 所说是个BUG(看了下手册不知道是不是5.2.7之处的那个BUG),按照他的说法定义了相对时间后正常了。

    echo date("Y-m", strtotime("-1 month", strtotime("first day of this month")));
    

    reply
    0
  • 黄舟

    黄舟2017-04-10 15:06:40

    //问题还是无法得到9月31号 http://strtotime.co.uk/?str=-1+month&timezone=0 这个网站显示结果一样
    >>> date("Y-m-d", strtotime("-1 month", strtotime("2016-10-31 first day of this month")));
    => "2016-09-01"
    >>> $d = new DateTime( '2016-10-31' );
    >>> $d->modify( 'first day of -1 month' );
    >>> $d->format('Y-m-d')
    => "2016-09-01"

    reply
    0
  • Cancelreply