What is the syntax of the LOCALECONV() function in php?
localeconv()
Parameter | Description |
---|---|
string | Required. Specifies the string to convert |
examples of the LOCALECONV() function
Example 1. In this example, we find the United States locale numeric formatting information:
<?php
setlocale(LC_ALL,"US");
$locale_info = localeconv();
print_r($locale_info);
?>