Ver original<?phpfunction restaFechas($dFecIni, $dFecFin){ $meses = floor((strtotime($dFecFin)-strtotime($dFecIni)) / 60 / 60 / 24 / 30); $dias = (round((strtotime($dFecFin)-strtotime($dFecIni)) / 60 / 60 / 24)) - $meses * 30; return "meses: ".$meses." dias: ".$dias;}echo restaFechas("21-01-2010", "01-03-2010");?>