convertir fecha de ingles a español

<?php // 2015-02-11 16:52:06 class POST_FECHA{ public static function obtener_fecha($fecha_post){ $meses = array('','Enero','Febrero','Marzo','Abril','Mayo','Junio','Julio','Agosto','Septiembre','Octubre','Noviembre','Diciembre'); $fecha_formateada = date('d/n/Y|H:i',strtotime($fecha_post)); $array_fecha_hora = explode('|',$fecha_formateada); $fecha = $array_fecha_hora[0]; $hora = $array_fecha_hora[1]; $temp_fecha = explode('/',$fecha); $salida = $temp_fecha[0].", ".$meses[$temp_fecha[1]]." ".$temp_fecha[2]; $salida .= ' '.POST_FECHA::calcula_tiempo($fecha_post); return $salida; } }
toma la fecha de una base de datos (por ejemplo mysql) y se pasa por parametro a la función "obtener_fecha" y esta devolvera formateada la fecha en español.

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.