Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 18380 программистов и 1640 роботов. Сейчас ищут 1239 программистов ...
IntlCalendar::getTimeZone - Get the objectʼs timezone
Вернуться к: IntlCalendar
IntlCalendar::getTimeZone
(PHP 5.5.0, PHP 7, PECL >= 3.0.0a1)
IntlCalendar::getTimeZone — Get the objectʼs timezone
Описание
Объектно-ориентированный стиль
Процедурный стиль
Returns the IntlTimeZone object associated with this calendar.
Список параметров
-
cal
-
The IntlCalendar resource.
Возвращаемые значения
An IntlTimeZone object corresponding to the one used internally in this object.
Примеры
Пример #1 IntlCalendar::getTimeZone()
<?php
ini_set('date.timezone', 'Europe/Lisbon');
ini_set('intl.default_locale', 'en_US');
$cal = IntlCalendar::createInstance();
print_r($cal->getTimeZone());
$cal->setTimeZone('UTC');
print_r($cal->getTimeZone());
$cal = IntlCalendar::fromDateTime('2012-01-01 00:00:00 GMT+03:33');
print_r($cal->getTimeZone());
Результат выполнения данного примера:
IntlTimeZone Object ( [valid] => 1 [id] => Europe/Lisbon [rawOffset] => 0 [currentOffset] => 3600000 ) IntlTimeZone Object ( [valid] => 1 [id] => UTC [rawOffset] => 0 [currentOffset] => 0 ) IntlTimeZone Object ( [valid] => 1 [id] => GMT+03:33 [rawOffset] => 12780000 [currentOffset] => 12780000 )
Смотрите также
- IntlCalendar::setTimeZone() - Set the timezone used by this calendar
- IntlCalendar::createInstance() - Create a new IntlCalendar
- IntlGregorianCalendar::__construct()
Вернуться к: IntlCalendar