Adicionar anos a uma data é redefinido para 1970-01-01

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

saídas

1981-02-15

e

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

saídas

1982-02-15

mas

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

saídas

1970-01-01

Como consertar?

questionAnswers(5)

yourAnswerToTheQuestion