La adición de años a una fecha se restablece a 1970-01-01

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

salidas

1981-02-15

y

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

salidas

1982-02-15

pero

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

salidas

1970-01-01

¿Como arreglar?

Respuestas a la pregunta(5)

Su respuesta a la pregunta