In PHP given a UTC timestamp I would like to add exactly N number of years. This should take into consideration leap years.

Thank you.

link|improve this question

59% accept rate
feedback

2 Answers

up vote 5 down vote accepted
$newTimestamp = strtotime('+2 years', $timestamp);

Replace "+2 years" as required.

ref: http://php.net/manual/en/function.strtotime.php

link|improve this answer
@NullUserException: Looks pretty obvious that you'd replace 2 with N, and that $timestamp contains the proper timestamp. Nowhere does it say in Jeff's code that $timestamp = now. – Lightness Races in Orbit Mar 2 '11 at 20:19
It's an example ... with the proviso, "replace +2 years as required" :P – Jeff Parker Mar 2 '11 at 20:20
I'd +1 but I capped out of votes. :) – Lightness Races in Orbit Mar 2 '11 at 20:20
@Tomalak No problem, thanks for the thought :) – Jeff Parker Mar 2 '11 at 20:22
@Soumya The answer was edited after I posted my comment. – NullUserException Mar 2 '11 at 20:22
feedback
$date = new DateTime();
$date->add(new DateInterval('P10Y'));

adds 10 years (10Y) to "today". DateTime's only in PHP 5.3, though.

link|improve this answer
+1, didn't know that one! On a sidenote, do you know some good text/book/tutorial on the new stuff to v5.3? Except official manual. – Czechnology Mar 2 '11 at 20:18
Not offhand. The php site has a good changelog/migration tutorial, though. I tend to avoid PHP books, because they're either hideously out of date, poorly written (e.g. lead you to write very bad insecure code), or just wildly wrong. – Marc B Mar 2 '11 at 20:20
Not fully correct: DateTime is in since 5.2, only DateInterval was added for 5.3. – tobyS Mar 2 '11 at 20:26
This is a good solution, I'm just sorry we don't have php 5.3. – Onema Mar 2 '11 at 20:40
In that case, the strtotime() options in the other answers will work for you. – Marc B Mar 2 '11 at 20:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.