2

考虑到有些月份的天数比其他月份少,我正在使用我在这里找到的一个函数来为日期添加月份。

    function addMonths($date_str, $months){
        $date = new DateTime($date_str);
        $start_day = $date->format('j');
 var_dump($date->format('Y-m-d'));
        $date->modify("+{$months} month");
        $end_day = $date->format('j');
        var_dump($date->format('Y-m-d'));
        if ($start_day != $end_day)
            $date->modify('last day of last month');
        var_dump($date->format('Y-m-d'));die();
        return $date->format('Y-m-d');
    }

由于该函数没有按预期工作,我转储了一些变量以查看发生了什么。让我们尝试以下方法:

addMonths('2012-05-31',1)

我得到以下错误的输出:

string(10) "2012-05-31" string(10) "2012-07-01" string(10) "2012-05-31"

正如您所看到的,当我在输入日期中添加一个月时,我得到“2012-07-01”,但随后满足条件,我应该得到 6 月的最后一天,即 7 月的前一个月,而不是 5 月。我不知道发生了什么,你能帮帮我吗?

4

3 回答 3

2

PHP 在PHP 5.2.17 之前存在日期时间相关格式的错误

试试这个:

<?php
function addMonths($date_str, $months) {
  $date      = new DateTime($date_str);
  $start_day = $date->format('j');

  $date->modify("+{$months} month");
  $end_day = $date->format('j');

  if ($start_day != $end_day) {
    $date->modify('last day');
  }

  return $date->format('Y-m-d');
}

echo addMonths('2012-05-31', 1);

我这里没有这么旧的 PHP 版本,但我认为它可以last day在这个版本中处理。

对我来说,它返回:

2012-06-30
于 2012-05-02T17:47:18.613 回答
0

我复制/粘贴了您的代码,以下是我在 PHP 5.3.3 上的输出:

string(10) "2012-05-31"
string(10) "2012-07-01"
string(10) "2012-06-30"
于 2012-05-02T17:40:32.233 回答
0
    function add_month($format , $date , $months_to_add ){
        return date($format, strtotime("$date +$months_to_add month"));
}

我正在使用这个。你可以试试这个。

于 2015-04-03T15:26:20.003 回答