IntlDateFormatter::getCalendar

datefmt_get_calendar

(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)

IntlDateFormatter::getCalendar -- datefmt_get_calendarObtém o tipo de calendário usado para o IntlDateFormatter

Descrição

Estilo orientado a objetos

public IntlDateFormatter::getCalendar(): int|false

Estilo procedural

datefmt_get_calendar(IntlDateFormatter $formatter): int|false

Parâmetros

formatter

O recurso do formatador

Valor Retornado

O tipo de calendário sendo usado pelo formatador. Pode ser IntlDateFormatter::TRADITIONAL ou IntlDateFormatter::GREGORIAN. Retorna false em caso de falha.

Exemplos

Example #1 Exemplo de datefmt_get_calendar()

<?php
$fmt = datefmt_create(
    'en_US',
    IntlDateFormatter::FULL,
    IntlDateFormatter::FULL,
    'America/Los_Angeles',
    IntlDateFormatter::GREGORIAN
);
echo 'O calendário do formatador é : ' . datefmt_get_calendar($fmt);
datefmt_set_calendar($fmt, IntlDateFormatter::TRADITIONAL);
echo 'Agora o calendário do formatador é : ' . datefmt_get_calendar($fmt);
?>

Example #2 Exemplo OO

<?php
$fmt = new IntlDateFormatter(
    'en_US',
    IntlDateFormatter::FULL,
    IntlDateFormatter::FULL,
    'America/Los_Angeles',
    IntlDateFormatter::GREGORIAN
);
echo 'O calendário do formatador é : ' . $fmt->getCalendar();
$fmt->setCalendar(IntlDateFormatter::TRADITIONAL);
echo 'Agora o calendário do formatador é : ' . $fmt->getCalendar();

?>

Example #3 Exemplo de manipulação de localidade inválida

<?php
try {
    $fmt = new IntlDateFormatter(
        'invalid_locale',
        IntlDateFormatter::FULL,
        IntlDateFormatter::FULL,
        'dunno',
        IntlDateFormatter::GREGORIAN,
    );
    $cal = $fmt->getCalendar();
} catch (\Error $e) {
    // ...
}
?>

O exemplo acima produzirá:

O calendário do formatador é : 1
Agora o calendário do formatador é : 0

Veja Também