update : 2015.11.03
php.shukuma.com

검색:
 
 
Get the calendar type used for the IntlDateFormatter

IntlDateFormatter::getCalendar

datefmt_get_calendar

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

IntlDateFormatter::getCalendar -- datefmt_get_calendarGet the calendar type used for the IntlDateFormatter

설명

객체 기반 형식

int IntlDateFormatter::getCalendar ( void )

절차식 형식

int datefmt_get_calendar ( IntlDateFormatter $fmt )

인수

fmt

The formatter resource

반환값

The calendar type being used by the formatter. Either IntlDateFormatter::TRADITIONAL or IntlDateFormatter::GREGORIAN.

예제

Example #1 datefmt_get_calendar() example

<?php
$fmt 
datefmt_create(
    
'en_US',
    
IntlDateFormatter::FULL,
    
IntlDateFormatter::FULL,
    
'America/Los_Angeles',
    
IntlDateFormatter::GREGORIAN
);
echo 
'calendar of the formatter is : ' datefmt_get_calendar($fmt);
datefmt_set_calendar($fmtIntlDateFormatter::TRADITIONAL);
echo 
'Now calendar of the formatter is : ' datefmt_get_calendar($fmt);
?>

Example #2 OO example

<?php
$fmt 
= new IntlDateFormatter(
    
'en_US',
    
IntlDateFormatter::FULL,
    
IntlDateFormatter::FULL,
    
'America/Los_Angeles',
    
IntlDateFormatter::GREGORIAN
);
echo 
'calendar of the formatter is : ' $fmt->getCalendar();
$fmt->setCalendar(IntlDateFormatter::TRADITIONAL);
echo 
'Now calendar of the formatter is : ' $fmt->getCalendar();

?>

위 예제의 출력:

calendar of the formatter is : 1
Now calendar of the formatter is : 0

참고