/PHP-7.1/ext/intl/tests/ |
H A D | breakiter_getLocale_error.phpt | 2 IntlBreakIterator::getLocale(): arg errors 14 var_dump($bi->getLocale(1, 2)); 15 var_dump($bi->getLocale(array())); 16 var_dump($bi->getLocale()); 18 Warning: IntlBreakIterator::getLocale() expects exactly 1 parameter, 2 given in %s on line %d 20 Warning: IntlBreakIterator::getLocale(): breakiter_get_locale: bad arguments in %s on line %d 23 Warning: IntlBreakIterator::getLocale() expects parameter 1 to be integer, array given in %s on lin… 25 Warning: IntlBreakIterator::getLocale(): breakiter_get_locale: bad arguments in %s on line %d 28 Warning: IntlBreakIterator::getLocale() expects exactly 1 parameter, 0 given in %s on line %d 30 Warning: IntlBreakIterator::getLocale(): breakiter_get_locale: bad arguments in %s on line %d
|
H A D | calendar_getLocale_error.phpt | 2 IntlCalendar::getLocale(): bad arguments 15 var_dump($c->getLocale()); 16 var_dump($c->getLocale(2)); 17 var_dump($c->getLocale(2, 3)); 22 Warning: IntlCalendar::getLocale() expects exactly 1 parameter, 0 given in %s on line %d 24 Warning: IntlCalendar::getLocale(): intlcal_get_locale: bad arguments in %s on line %d 27 Warning: IntlCalendar::getLocale(): intlcal_get_locale: invalid locale type in %s on line %d 30 Warning: IntlCalendar::getLocale() expects exactly 1 parameter, 2 given in %s on line %d 32 Warning: IntlCalendar::getLocale(): intlcal_get_locale: bad arguments in %s on line %d
|
H A D | gregoriancalendar___construct_basic.phpt | 18 var_dump($intlcal->getLocale(1)); 22 var_dump($intlcal->getLocale(1)); 26 var_dump($intlcal->getLocale(1)); 30 var_dump($intlcal->getLocale(1)); 34 var_dump($intlcal->getLocale(1));
|
H A D | breakiter_getLocale_basic.phpt | 2 IntlBreakIterator::getLocale(): basic test 13 var_dump($bi->getLocale(0)); 14 var_dump($bi->getLocale(1));
|
H A D | breakiter_getLocale_basic2.phpt | 2 IntlBreakIterator::getLocale(): basic test 13 var_dump($bi->getLocale(0)); 14 var_dump($bi->getLocale(1));
|
H A D | calendar_createInstance_variation1.phpt | 18 print_R($cal->getLocale(Locale::ACTUAL_LOCALE)); 23 print_R($cal->getLocale(Locale::ACTUAL_LOCALE)); 28 print_R($cal->getLocale(Locale::ACTUAL_LOCALE)); 33 print_R($cal->getLocale(Locale::ACTUAL_LOCALE)); 38 print_R($cal->getLocale(Locale::ACTUAL_LOCALE));
|
H A D | dateformat_bug71516.phpt | 15 echo "Formatter without pattern: " . $goodFormatter->getLocale() . PHP_EOL; 16 echo "Formatter with pattern: " . $badFormatter->getLocale() . PHP_EOL; 17 echo "Formatter with pattern set later: " . $badFormatter2->getLocale() . PHP_EOL;
|
H A D | calendar_getLocale_basic.phpt | 2 IntlCalendar::getLocale() basic test 15 var_dump($intlcal->getLocale(Locale::ACTUAL_LOCALE));
|
H A D | bug60192-getlocale.phpt | 17 $c->getLocale(Locale::ACTUAL_LOCALE); 21 #0 %s(%d): Collator->getLocale(0)
|
H A D | calendar_fromDateTime_basic.phpt | 18 $cal->getLocale(1) 27 $cal->getLocale(1)
|
H A D | calendar_createInstance_basic.phpt | 18 print_R($cal->getLocale(Locale::ACTUAL_LOCALE));
|
H A D | ut_common.inc | 72 return $GLOBALS['oo-mode'] ? $coll->getLocale( $type ) : collator_get_locale( $coll, $type ); 203 return $GLOBALS['oo-mode'] ? $fmt->getLocale( $type ) : numfmt_get_locale( $fmt, $type ); 329 return $GLOBALS['oo-mode'] ? $fmt->getLocale( ) : msgfmt_get_locale( $fmt ); 378 return $GLOBALS['oo-mode'] ? $fmt->getLocale($type ) : datefmt_get_locale( $fmt ,$type);
|
/PHP-7.1/ext/intl/doc/ |
H A D | msgfmt_api.php | 108 public function getLocale() {} function in MessageFormatter
|
H A D | collator_api.php | 242 public function getLocale( $type ) {} function in Collator
|
H A D | datefmt_api.php | 169 public function getLocale($type = ULOC_ACTUAL_LOCALE) {} function in DateFormatter
|
H A D | formatter_api.php | 308 public function getLocale($type = 0) {} function in NumberFormatter
|
/PHP-7.1/ext/intl/collator/ |
H A D | collator_class.c | 112 PHP_NAMED_FE( getLocale, ZEND_FN( collator_get_locale ), collator_1_arg )
|
/PHP-7.1/ext/intl/msgformat/ |
H A D | msgformat_class.c | 136 PHP_NAMED_FE( getLocale, ZEND_FN( msgfmt_get_locale ), arginfo_messageformatter_geterrormessage )
|
/PHP-7.1/ext/intl/formatter/ |
H A D | formatter_class.c | 168 PHP_NAMED_FE( getLocale, ZEND_FN( numfmt_get_locale ), arginfo_numberformatter_getlocale )
|
/PHP-7.1/ext/intl/dateformat/ |
H A D | dateformat_class.c | 174 PHP_NAMED_FE( getLocale, ZEND_FN( datefmt_get_locale ), arginfo_intldateformatter_getdatetype )
|
/PHP-7.1/ext/intl/calendar/ |
H A D | calendar_class.cpp | 193 Locale locale = cal->getLocale(ULOC_VALID_LOCALE, uec); in Calendar_get_debug_info() 402 PHP_ME_MAPPING(getLocale, intlcal_get_locale, ainfo_cal_get_locale, ZEND_ACC_PUBLIC)
|
H A D | calendar_methods.cpp | 708 Locale locale = co->ucal->getLocale((ULocDataLocaleType)locale_type, in PHP_FUNCTION()
|
/PHP-7.1/ext/intl/breakiterator/ |
H A D | breakiterator_methods.cpp | 365 Locale locale = bio->biter->getLocale((ULocDataLocaleType)locale_type, in PHP_FUNCTION()
|
H A D | breakiterator_class.cpp | 277 PHP_ME_MAPPING(getLocale, breakiter_get_locale, ainfo_biter_get_locale, ZEND_ACC_PUBLIC)
|