IntlCalendar::getType

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

IntlCalendar::getTypeObtém o tipo de calendário

Descrição

Estilo orientado a objetos

public IntlCalendar::getType(): string

Estilo procedural

intlcal_get_type(IntlCalendar $calendar): string

Uma string descrevendo o tipo deste calendário. Será um dos valores válidos para a palavra-chave 'calendar'.

Parâmetros

calendar

Uma instância de IntlCalendar.

Valor Retornado

Uma string representando o tipo de calendário, como 'gregorian', 'islamic', etc.

Exemplos

Exemplo #1 IntlCalendar::getType()

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

$cal = IntlCalendar::createInstance(NULL, '@calendar=ethiopic-amete-alem');
var_dump($cal->getType());

$cal = new IntlGregorianCalendar();
var_dump($cal->getType());

O exemplo acima produzirá:

string(19) "ethiopic-amete-alem"
string(9) "gregorian"

add a note add a note

User Contributed Notes

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