gmstrftime

(PHP 3 >= 3.0.12, PHP 4, PHP 5)

gmstrftime -- Dar formato a una hora/fecha GMT/UTC de acuerdo a parámetros de la localidad

Descripción

string gmstrftime ( string formato [, int marca_de_tiempo] )

Se comporta al igual que strftime(), con la excepción de que la hora devuelta es Tiempo Medio de Greenwich (GMT por sus siglas en inglés). Por ejemplo, cuando se ejecuta en Tiempo Estándar del Este (GMT -0500), la primera línea a continuación imprime "Dec 31 1998 20:00:00", mientras que la segunda imprime "Jan 01 1999 01:00:00".

Ejemplo 1. Ejemplo de gmstrftime()

<?php
setlocale
(LC_TIME, 'en_US');
echo
strftime("%b %d %Y %H:%M:%S", mktime(20, 0, 0, 12, 31, 98)) . "\n";
echo
gmstrftime("%b %d %Y %H:%M:%S", mktime(20, 0, 0, 12, 31, 98)) . "\n";
?>

Vea también strftime().

Hosting by: hurra.com
Generated: 2007-01-26 18:00:59