PHP/Date/gmstrftime — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
м (1 версия)
 
м (1 версия)
 
(нет различий)

Текущая версия на 07:03, 26 мая 2010

Adjusting time from UTC to another time zone

 
<?php
$now = time();

$now += $pc_timezones["PST"];
print gmstrftime("%c",$now);
?>



Handling DST with explicit offsets

 
<?php
$now = time();
$now -= 8 * 3600;
$ar = localtime($now,true);
if ($ar["tm_isdst"]) { $now += 3600; }
print gmstrftime("%c",$now);
?>