nl_langinfo
]Podporované v PHP 4 >= 4.0.7, PHP 5
PHP -> Funkcie -> Funkcie pre prácu s reťazcami PHP -> nl_langinfo
Syntax
string nl_langinfo ( int $item )
Popis
Príkaz jazyka PHP
Query language and locale information
nl_langinfo() is used to access individual elements of the locale categories. Unlike localeconv(), which returns all of the elements, nl_langinfo() allows you to select any specific element.
item may be an integer value of the element or the constant name of the element. The following is a list of constant names for item that may be used and their description. Some of these constants may not be defined or hold no value for certain locales.
Návratové hodnoty
Returns the element as a string, or FALSE if item is not valid.
Poznámka
This function is not implemented on Windows platforms.
Pozri aj
setlocale, localeconv
]