日付を1か月増やす


103

次の形式の日付があるとします:2010-12-11(年月日)

PHPでは、日付を1か月増やし、必要に応じて年を自動的に増やします(つまり、2012年12月から2013年1月に増やします)。

よろしく。

回答:


167
$time = strtotime("2010.12.11");
$final = date("Y-m-d", strtotime("+1 month", $time));

// Finally you will have the date you're looking for.

31
すべての日付で機能するわけではありません。たとえば、2013-05-31では、翌月の6月ではなく7月が表示されます。
Patrick Desjardins 2013年

1
2014-01-31の理由で2014-03-03をフォローしていますか?
Manish Goyal 2014

この文字列では機能しませんでした: "2014-06-19 15:00:19"
Meetai.com

1
これは時々壊れます。@jasonの答えは、うるう年、月の長さなどを考慮しているため、技術的にはより正確です。正解としてマークする必要があります。
2015

4
この答えは、検出が困難な「月の最終日」のシナリオで失敗するため、危険です。
ckonig

43

毎月のサイクル(プラス月、マイナス1日)を除いて、同様の機能が必要でした。しばらくSOを検索した後、私はこのプラグアンドプレイソリューションを作成することができました。

function add_months($months, DateTime $dateObject) 
    {
        $next = new DateTime($dateObject->format('Y-m-d'));
        $next->modify('last day of +'.$months.' month');

        if($dateObject->format('d') > $next->format('d')) {
            return $dateObject->diff($next);
        } else {
            return new DateInterval('P'.$months.'M');
        }
    }

function endCycle($d1, $months)
    {
        $date = new DateTime($d1);

        // call second function to add the months
        $newDate = $date->add(add_months($months, $date));

        // goes back 1 day from date, remove if you want same day of month
        $newDate->sub(new DateInterval('P1D')); 

        //formats final date to Y-m-d form
        $dateReturned = $newDate->format('Y-m-d'); 

        return $dateReturned;
    }

例:

$startDate = '2014-06-03'; // select date in Y-m-d format
$nMonths = 1; // choose how many months you want to move ahead
$final = endCycle($startDate, $nMonths); // output: 2014-07-02

3
すばらしい、まさに私が必要としたもの。たくさんの時間を節約してくれてありがとう!
Tum

問題ありません。便利だと思います
Jason

ジェイソンのおかげで、これは非常に役に立ちました。私はそれを再フォーマットし、すべてを理解できるようにコメントを追加しました。誰かを助けるために、私はそれをさらに下に投稿しました(ここに追加しようとしましたが、長すぎました)。
グレッグ

1
1月30日と1月31日でも同じ値になります。
Satys 2018

チャームのように機能し、2020年1月1日から12月31日までテストしました。
Paul Nowak

34

を使用しDateTime::addます。

$start = new DateTime("2010-12-11", new DateTimeZone("UTC"));
$month_later = clone $start;
$month_later->add(new DateInterval("P1M"));

addは元のオブジェクトを変更するため、クローンを使用しましたが、これは望ましくない場合があります。


1
動作しません..(new DateTime( "2010-01-31"、new DateTimeZone( "UTC")))-> add(new DateInterval( "P1M"))-> format( 'Ym-d')結果は2010-03-03
Scholtz

13
strtotime( "+1 month", strtotime( $time ) );

これは、日付関数で使用できるタイムスタンプを返します


@Gelen:これは機能せず、間違った日付が表示されます...メソッドの使用方法を教えてください。ここでの$ timeの値は何ですか?
sqlchild 2013

これは機能しません、間違った日付を与えます...あなたのメソッドの使い方を教えてください、ここでの$ timeの値は何ですか?
sqlchild 2013

受け入れられた答えと同じ問題。一部の文字列では機能しません。
Meetai.com 2014年

これは私には有効です(もちろん$time初期値があります)。
tatskie

6
(date('d') > 28) ? date("mdY", strtotime("last day of next month")) : date("mdY", strtotime("+1 month"));

これにより、2月と他の31か月が補償されます。もちろん、より多くのチェックを行って、「翌日の翌日」の相対的な日付形式を正確に取得することもできます(これは悲しいことに機能しません。以下を参照してください)。DateTimeも使用できます。

DateInterval('P1M')strtotime("+1 month")は両方とも、翌月の日数に関係なく、基本的に盲目的に31日を追加しています。

  • 2010-01-31 => 3月3日
  • 2012-01-31 => 3月2日(うるう年)

3
「翌月の日数に関係なく盲目的に31日を加える」、絶対に正しい!(+1)。
ホセマヌエルアバルカロドリゲス


5

私はこのように使用します:-

 $occDate='2014-01-28';
 $forOdNextMonth= date('m', strtotime("+1 month", strtotime($occDate)));
//Output:- $forOdNextMonth=02


/*****************more example****************/
$occDate='2014-12-28';

$forOdNextMonth= date('m', strtotime("+1 month", strtotime($occDate)));
//Output:- $forOdNextMonth=01

//***********************wrong way**********************************//
$forOdNextMonth= date('m', strtotime("+1 month", $occDate));
  //Output:- $forOdNextMonth=02; //instead of $forOdNextMonth=01;
//******************************************************************//

1
ありがとう。ただし、date( 'm'、strtotime( "+ 1 month"、strtotime($ occDate)))とdate( 'm'、strtotime( "+ 1 month"、$ occDate))は同じように機能します。

1
いいえ、どちらも@ sah.cyBuzzScの違いです。例を考えます:-$ occDate = '2014-12-28'; $ forOdNextMonth = date( 'm'、strtotime( "+ 1 month"、$ occDate)); 値$ forOdNextMonthは02です
vineet

@chotesahを説明してくれてありがとう。2番目の例は非常に優れています。

3

まず、12-12-2012のように日付形式を設定してください

この関数を使用すると、正しく機能します。

$date =  date('d-m-Y',strtotime("12-12-2012 +2 Months");

ここで12-12-2012はあなたの日付で、+ 2か月は月の増分です。

また、年、日付の増分

strtotime("12-12-2012 +1 Year");

Ansは2013年12月12日


1

Jasonに感謝します。あなたの投稿はとても役に立ちました。私はそれを再フォーマットし、すべてを理解できるようにコメントを追加しました。それが誰かを助けるために、私はそれをここに投稿しました:

function cycle_end_date($cycle_start_date, $months) {
    $cycle_start_date_object = new DateTime($cycle_start_date);

    //Find the date interval that we will need to add to the start date
    $date_interval = find_date_interval($months, $cycle_start_date_object);

    //Add this date interval to the current date (the DateTime class handles remaining complexity like year-ends)
    $cycle_end_date_object = $cycle_start_date_object->add($date_interval);

    //Subtract (sub) 1 day from date
    $cycle_end_date_object->sub(new DateInterval('P1D')); 

    //Format final date to Y-m-d
    $cycle_end_date = $cycle_end_date_object->format('Y-m-d'); 

    return $cycle_end_date;
}

//Find the date interval we need to add to start date to get end date
function find_date_interval($n_months, DateTime $cycle_start_date_object) {
    //Create new datetime object identical to inputted one
    $date_of_last_day_next_month = new DateTime($cycle_start_date_object->format('Y-m-d'));

    //And modify it so it is the date of the last day of the next month
    $date_of_last_day_next_month->modify('last day of +'.$n_months.' month');

    //If the day of inputted date (e.g. 31) is greater than last day of next month (e.g. 28)
    if($cycle_start_date_object->format('d') > $date_of_last_day_next_month->format('d')) {
        //Return a DateInterval object equal to the number of days difference
        return $cycle_start_date_object->diff($date_of_last_day_next_month);
    //Otherwise the date is easy and we can just add a month to it
    } else {
        //Return a DateInterval object equal to a period (P) of 1 month (M)
        return new DateInterval('P'.$n_months.'M');
    }
}

$cycle_start_date = '2014-01-31'; // select date in Y-m-d format
$n_months = 1; // choose how many months you want to move ahead
$cycle_end_date = cycle_end_date($cycle_start_date, $n_months); // output: 2014-07-02

1
$date = strtotime("2017-12-11");
$newDate = date("Y-m-d", strtotime("+1 month", $date));

日単位で増やしたい場合は、それも行うことができます

$date = strtotime("2017-12-11");
$newDate = date("Y-m-d", strtotime("+5 day", $date));

1

数か月後の日付を見つける簡単な方法で答えを更新するだけです。マークされた最良の答えは正しい解決策を与えないので。

<?php

    $date = date('2020-05-31');
    $current = date("m",strtotime($date));
    $next = date("m",strtotime($date."+1 month"));
    if($current==$next-1){
        $needed = date('Y-m-d',strtotime($date." +1 month"));
    }else{
        $needed = date('Y-m-d', strtotime("last day of next month",strtotime($date)));
    }
    echo "Date after 1 month from 2020-05-31 would be : $needed";

?>

これだけが+1か月の日付に対する正しい解決策です。
asadアプリ

0
function dayOfWeek($date){
    return DateTime::createFromFormat('Y-m-d', $date)->format('N');
}

使用例:

echo dayOfWeek(2016-12-22);
// "4"
echo dayOfWeek(date('Y-m-d'));
// "4"

0

日付形式の答えを探している人のために。

echo date_create_from_format('d/m/Y', '15/04/2017')->add(new DateInterval('P1M'))->format('d/m/Y');

日付形式を変更するだけです。


-2

入力ボックスに日付を入力し、jqueryで日付から日付を取得するボタンをクリックします

$(document).ready( function() {
    $("button").click(function(){   
    var day = ["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"];
    var a = new Date();
    $(".result").text(day[a.getDay()]);

    });  
             });

-2
 <?php
              $selectdata ="select fromd,tod  from register where username='$username'";
            $q=mysqli_query($conm,$selectdata);
            $row=mysqli_fetch_array($q);

            $startdate=$row['fromd']; 
            $stdate=date('Y', strtotime($startdate));  

            $endate=$row['tod']; 
            $enddate=date('Y', strtotime($endate));  

            $years = range ($stdate,$enddate);
            echo '<select name="years" class="form-control">';
            echo '<option>SELECT</option>';
            foreach($years as $year)
              {   echo '<option value="'.$year.'"> '.$year.' </option>';  }
                echo '</select>'; ?>

2
貼り付けコードのコピーは常に役立つとは限りません。コードについても少し説明する必要があります。
mrkernelpanic

-2

提示されたすべてのソリューションが正しく機能していません。
strtotime()とDateTime :: addまたはDateTime :: modifyが無効な結果を返すことがあります。
例:
-2019.08.31 + 1か月では
2019.10.2019の代わりに30.09.2019-29.02.2020 + 1年で01.03.2021の代わりに28.02.2021
(PHP 5.5、PHP 7.3でテスト済み)

以下は、問題を解決する、Angelo投稿しアイデアに基づく私の機能です。

// $time - unix time or date in any format accepted by strtotime() e.g. 2020-02-29  
// $days, $months, $years - values to add
// returns new date in format 2021-02-28
function addTime($time, $days, $months, $years)
{
    // Convert unix time to date format
    if (is_numeric($time))
    $time = date('Y-m-d', $time);

    try
    {
        $date_time = new DateTime($time);
    }
    catch (Exception $e)
    {
        echo $e->getMessage();
        exit;
    }

    if ($days)
    $date_time->add(new DateInterval('P'.$days.'D'));

    // Preserve day number
    if ($months or $years)
    $old_day = $date_time->format('d');

    if ($months)
    $date_time->add(new DateInterval('P'.$months.'M'));

    if ($years)
    $date_time->add(new DateInterval('P'.$years.'Y'));

    // Patch for adding months or years    
    if ($months or $years)
    {
        $new_day = $date_time->format("d");

        // The day is changed - set the last day of the previous month
        if ($old_day != $new_day)
        $date_time->sub(new DateInterval('P'.$new_day.'D'));
    }
    // You can chage returned format here
    return $date_time->format('Y-m-d');
}

使用例:

echo addTime('2020-02-29', 0, 0, 1); // add 1 year (result: 2021-02-28)
echo addTime('2019-08-31', 0, 1, 0); // add 1 month (result: 2019-09-30)
echo addTime('2019-03-15', 12, 2, 1); // add 12 days, 2 months, 1 year (result: 2019-09-30)
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.