Dodanie lat do daty resetuje się do 1970-01-01

$somedate = "1980-02-15";
$otherdate = strtotime('+1 year', strtotime($somedate));
echo date('Y-m-d', $otherdate);

wyjścia

1981-02-15

i

$somedate = "1980-02-15";
$otherdate = strtotime('+2 year', strtotime($somedate));
echo date('Y-m-d', $otherdate); 

wyjścia

1982-02-15

ale

$somedate = "1980-02-15";
$otherdate = strtotime('+75 year', strtotime($somedate));
echo date('Y-m-d', $otherdate); 

wyjścia

1970-01-01

Jak naprawić?

questionAnswers(5)

yourAnswerToTheQuestion