IntlDateFormatter::getCalendarObject

(PHP 5 >= 5.5.0, PHP 7, PECL intl >= 3.0.0)
Get copy of formatterʼs calendar object
public IntlCalendar IntlDateFormatter::getCalendarObject ( void )

Object oriented style

Procedural style

IntlCalendar datefmt_get_calendar_object ( void )

Obtain a copy of the calendar object used internally by this formatter. This calendar will have a type (as in gregorian, japanese, buddhist, roc, persian, islamic, etc.) and a timezone that match the type and timezone used by the formatter. The date/time of the object is unspecified.

Returns:

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

Examples:
IntlDateFormatter::getCalendarObject() example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?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:

IntlDateFormatter::getCalendar() -

IntlDateFormatter::setCalendar() -

IntlCalendar -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.