i18n İşlevleri
PHP Manual

locale_get_default

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

locale_get_defaultGet the default Locale

Açıklama

string locale_get_default ( void )

This function returns the default Locale, which is used by PHP to localize certain features. Please note that this isn't influenced by setlocale() or the system settings.

Dönen Değerler

Returns a string with the current Locale.

Örnekler

Örnek 1 A locale_get_default() example

<?php

// get the default Locale
echo locale_get_default();

//set a new Locale...
locale_set_default('pt_PT');

// ... and print it
echo locale_get_default();

?>

Yukarıdaki örneğin çıktısı:

en_US_POSIX
pt_PT

Ayrıca Bakınız


i18n İşlevleri
PHP Manual