Problem: I'm using strtotime to advance by 364 days in the future, but I'm getting troubles with leap years.
Example: today is January 20, 2012 - I need PHP to compute for me the timestamp of January 19, 2013.
If I simply add
strtotime("+364 days");
I correctly get January 18, 2013 - but for the code I'm writing I don't need to consider leap years and thus I expect to obtain January 19, 2013.
Any quick and dirty way to do this?
strtotime("+1 year") - 86400orstrtotime("+1 year -1 day")? – TimWolla Jan 20 at 17:16$leapyear = $year % 4 == 0 && ($year % 100 != 0 || $year % 400 == 0)– TimWolla Jan 20 at 17:22strtotime()takes leap years into account by itself. You don't need to do anything here.strtotime('+1 year -1 day');is all you need to do. – DaveRandom Jan 20 at 17:50