IntlCalendar::getTimeZone

(PHP 5 >= 5.5.0, PHP 7, PHP 8, PECL >= 3.0.0a1)

IntlCalendar::getTimeZoneObtém o fuso horário do objeto

Descrição

Estilo orientado a objetos

public IntlCalendar::getTimeZone(): IntlTimeZone|false

Estilo procedural

intlcal_get_time_zone(IntlCalendar $calendar): IntlTimeZone|false

Retorna o objeto IntlTimeZone associado a este calendário.

Parâmetros

calendar

Uma instância de IntlCalendar.

Valor Retornado

Um objeto IntlTimeZone correspondendo ao usado internamente neste objeto. Retorna false em caso de falha.

Exemplos

Exemplo #1 IntlCalendar::getTimeZone()

<?php
ini_set
('date.timezone', 'Europe/Lisbon');
ini_set('intl.default_locale', 'pt_BR');

$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());

O exemplo acima produzirá:

IntlTimeZone Object
(
    [valid] => 1
    [id] => Europe/Lisbon
    [rawOffset] => 0
    [currentOffset] => 0
)
IntlTimeZone Object
(
    [valid] => 1
    [id] => UTC
    [rawOffset] => 0
    [currentOffset] => 0
)
IntlTimeZone Object
(
    [valid] => 1
    [id] => GMT+03:33
    [rawOffset] => 12780000
    [currentOffset] => 12780000
)

Veja Também

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top