Resultados de la búsqueda a petición "php"
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-15y $somedate = "1980-02-15"; $otherdate = strtotime('+2 year', strtotime($somedate)); echo date('Y-m-d', ...