Skip to content

All topics  /  PHP

How to Add Month to Current Date in PHP ?

PHP ·

Hi Guys,

In this example,I will learn you add month to current date in php.you can easy and simply add month to current date in php.

we will show add month in current date php.this tutorial will give you example of add month to current date using php.

Example:


<?php
    $date = date("d/m/Y", strtotime(" +1 months"));
    echo $date;
?>

Output:

18/01/2021

It will help you...