Home Answers Viewqa PHP How to Addding One Month with PHP ?

 
 


Nadeem Kumar
How to Addding One Month with PHP ?
2 Answer(s)      2 years and 3 months ago
Posted in : PHP

Hi,

I am very new in this php programming language. Can anybody will guide me how to add 1 month on a specific date on PHP. Please give any example or reference links. Please feel free for any suggestion.

Thanks,

View Answers

February 9, 2011 at 10:23 AM


Hi,

Are you looking for the syntax of how to fetch ISO Date Format in PHP? By using this DateTime::setISODate() function you will be retrieve the ISO Date from the specific date. For details look below example of the ISO date function in PHP ...

<?php
date_default_timezone_set('India/Kolkata');

$datetime = new DateTime();

// Offset from start of week 2 (7) = 5
$datetime->setISODate(2009, 2, 5); // Day 5 of week 2 of 2009 is the 9th of January. 

// Offset from start of week 2 (7) = 10
$datetime->setISODate(2009, 2, 10); // Day 10 of week 2 of 2009 is the 14th of January.
?>

Thanks,


February 9, 2011 at 10:33 AM


Hi,

You asking about how to adding one month in a specific date in PHP. This below example shows you how one month to a Date in PHP Date object.

Examples as below: ...

<?php

//PHP Example code to add one moth to a date

$todayDate = date("Y-m-d");// current date echo "Today: ".$todayDate."
";

//Add one day to today $dateOneMonthAdded = strtotime(date("Y-m-d", strtotime($todayDate)) . "+1 month");

echo "After adding one month: ".date('l dS \o\f F Y', $dateOneMonthAdded)."
";

?>

Thanks,









Related Pages:

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.