Skip to content

All topics  /  PHP

How to Get Next Month From Date In Php?

PHP ·

Hi Guys,

In this example,I will learn you how to get next month from date in php.you can easy and simply get next month from date in php.

we will show you how to get next month from date in php.if you want to get next month from date in php then you can use bellow example.

Example:


<?php
    $date = "2020-01-11";
    $newdate = date("Y-m-d", strtotime ( '+1 month' , strtotime ( $date ) )) ;
    echo $newdate;
?>

Output:

2020-02-11

It will help you...