MessageFormatter::getLocale
PHP function
Edit on GitHub ✎
(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)
Get the locale for which the formatter was created
Description
Oop
MessageFormatter::getLocale(): string
Procedural
msgfmt_get_locale(MessageFormatter $formatter): string
Get the locale for which the formatter was created.
Parameters
formatterThe formatter resource
Return Values
The locale name
Examples
msgfmt_get_locale() example
php
<?php
$fmt = msgfmt_create('en_US', "Number {0,number}");
echo msgfmt_get_locale($fmt);
?>OO example
php
<?php
$fmt = new MessageFormatter('en_US', "Number {0,number}");
echo $fmt->getLocale();
?>The above example will output:
output
en_US