You are here : phpstringlocaleconv

localeconv() - string

Returns an associative array containing localized numeric and
   monetary formatting information.


Syntax

array localeconv
    ( void
   )


Example

<?phpif (false !== setlocale(LC_ALL, 'nl_NL.UTF-8@euro')) {    $locale_info = localeconv();    print_r($locale_info);}?>


Output / Return Value


Limitations


Alternatives / See Also


Reference