date_offset_get

(PHP 5 >= 5.1.0)

date_offset_get — Returns the daylight saving time offset

Описание

int date_offset_get ( DateTime $object )
int DateTime::getOffset ( void )

Список параметров

object

DateTime object.

Возвращаемые значения

Returns DST offset in seconds on success or FALSE on failure.

Коментарии

Автор:
The following gets the timezone of the server including daylight savings time changes.

<?php
$seconds 
date_offset_get(new DateTime);
print 
$seconds 3600;
// returns pos/neg decimal (eg. -7 if in PST and DST is active.)
// remember there are time zones with 30 and 45 min offsets
// http://en.wikipedia.org/wiki/Time_zone
?>
2010-10-11 17:43:09
http://php5.kiev.ua/manual/ru/function.date-offset-get.html

    Поддержать сайт на родительском проекте КГБ