Last Updated: February 25, 2016
·
399
· aaronott

Easily calculate 1 year

Many times I've needed to calculate a year or month or even day in seconds and I normally use the following method

$oneyear = 60 * 60 * 24 * 365;

One thing I've found easier to remember and to read is to use strtotime.

$oneyear = strtotime("+1 year", 0);