PHP/Date/gmstrftime

Материал из Web эксперт
Версия от 10:03, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Adjusting time from UTC to another time zone

   <source lang="html4strict">

<?php $now = time();

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

 </source>
   
  


Handling DST with explicit offsets

   <source lang="html4strict">

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

 </source>