php8.5
Home/ Manual/ intl / messageformatter/ MessageFormatter::getLocale

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

formatter

The 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

See Also

Source: reference/intl/messageformatter/get-locale.xml · from the official PHP manual (php/doc-en)