locale_get_default

(no version information, might be only in CVS)

locale_get_default -- Get the default Locale

Descrição

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.

Valores de retornado

Returns a string with the current Locale.

Exemplos

Exemplo 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();

?>

O exemplo acima irá imprimir:

en_US_POSIX
pt_PT

Veja também

locale_set_default()