Ver original$meses = array("Enero" => "01", "Febrero" => "02" ... etc);list($dia, $mes, $anyo) = explode(" ", "31 Diciembre 2008");$nueva_fecha = $anyo."-".$meses[$mes]."-".$dia;echo date("d-m-Y", strtotime($nueva_fecha));