Ver Mensaje Individual
  #8 (permalink)  
Antiguo 06/01/2006, 12:29
Avatar de Vaalegk
Vaalegk
 
Fecha de Ingreso: abril-2005
Mensajes: 154
Antigüedad: 19 años
Puntos: 2
intenta
Código PHP:

$strOutputDateMask01 
"%d de %B de %G a las %I:%M %p";
 
function 
PrintDate($fecha ""$mask "") {
  global 
$strOutputDateMask01;
  
  if (
$mask == ""$mask $strOutputDateMask01;
  if (
$fecha == ""$fecha time();  
  
  
setlocale(LC_ALL'es-ES');
  
$loc setlocale(LC_TIMENULL); 
   
  
$fecha strftime($mask$fecha);
  return 
$fecha;
 }
 
 
echo(
PrintDate());