Ver Mensaje Individual
  #4 (permalink)  
Antiguo 04/08/2010, 09:16
Avatar de ylellan
ylellan
 
Fecha de Ingreso: mayo-2010
Ubicación: en un lugar de Veracruz
Mensajes: 432
Antigüedad: 14 años
Puntos: 36
Respuesta: convertir meses en español

mira corazon, encontre algo asi:

Código PHP:
$formato="02/Agu/2010";
$fecha=explode("/",$formato);

switch(
$fecha[1])
{
case 
"Agu":
$fecha[1]="AGOSTO";
break;
default:
$fecha[1]="MES NULO";
}

echo 
$fecha[0]."/".$fecha[1]."/".$fecha[2];