Get copy of formatterʼs calendar object (original) (raw)

IntlDateFormatter::getCalendarObject

datefmt_get_calendar_object

(PHP 5 >= 5.5.0, PHP 7, PECL intl >= 3.0.0)

IntlDateFormatter::getCalendarObject -- datefmt_get_calendar_object — Get copy of formatterʼs calendar object

Description

Object oriented style

public IntlDateFormatter::getCalendarObject ( void ) : IntlCalendar

datefmt_get_calendar_object ( void ) : IntlCalendar

Parameters

This function has no parameters.

Return Values

A copy of the internal calendar object used by this formatter.

Examples

Example #1 IntlDateFormatter::getCalendarObject() example

<?php $formatter = IntlDateFormatter::create( "fr_FR@calendar=islamic", NULL, NULL, "GMT-01:00", IntlDateFormatter::TRADITIONAL );$cal = $formatter->getCalendarObject();var_dump( $cal->getType(), $cal->getTimeZone(), $cal->getLocale(Locale::VALID_LOCALE) );

The above example will output:

string(7) "islamic" object(IntlTimeZone)#3 (4) { ["valid"]=> bool(true) ["id"]=> string(9) "GMT-01:00" ["rawOffset"]=> int(-3600000) ["currentOffset"]=> int(-3600000) } string(5) "fr_FR"

See Also