Ver originalfunction inserta_hora_1($i, $j){ $k = "$i/$j"; if ($i > 0 && $j > 0) { $k = inserta_hora_1(--$i, --$j); } return $k;}