(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0)
MessageFormatter::getLocale -- msgfmt_get_locale — Biçemleyicinin oluşturulduğu yereli döndürür
Nesne yönelimli kullanım
Yordamsal kullanım
Biçemleyicinin oluşturulduğu yereli döndürür.
biçemleyici
Biçemleyici nesne
Yerel ismi
Örnek 1 - msgfmt_get_locale() örneği
<?php
$fmt = msgfmt_create('tr_TR', "Sayı: {0,number}");
echo msgfmt_get_locale($fmt);
?>
Örnek 2 - Nesne yönelimli örnek
<?php
$fmt = new MessageFormatter('tr_TR', "Sayı: {0,number}");
echo $fmt->getLocale();
?>
Yukarıdaki örneğin çıktısı:
tr_TR