PHP nl_langinfo() Function
❮ PHP String Reference
Definition and Usage
The nl_langinfo() function returns specific local information.
Note: This function does not work on Windows platforms.
Tip: Unlike the localeconv() function, which returns all local formatting information, the nl_langinfo() function returns specific information.
Syntax
nl_langinfo(element)
Parameter Values
| Parameter | Description |
|---|---|
| element | Required. Specifies which element to return. Must be one of the following elements: Time and Calendar:
Monetary Category:
Numeric Category:
Messaging Category:
Code set Category:
|
Technical Details
| Return Value: | Returns the specific information on success, or FALSE on failure. |
|---|---|
| PHP Version: | 4.1.0+ |
❮ PHP String Reference