update : 2015.11.03
php.shukuma.com검색:
|
IntlDateFormatter::getCalendarObjectdatefmt_get_calendar_object(PHP 5 >= 5.5.0, PECL intl >= 3.0.0) IntlDateFormatter::getCalendarObject -- datefmt_get_calendar_object — Get copy of formatterʼs calendar object 설명객체 기반 형식 절차식 형식 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. 인수이 함수는 인수가 없습니다. 반환값A copy of the internal calendar object used by this formatter. 예제
Example #1 IntlDateFormatter::getCalendarObject() example
<?php 위 예제의 출력: 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" 참고
|