PHP/Development/I18N Locale
Версия от 10:37, 26 мая 2010; (обсуждение)
Display the current locale information and change the locale
<?
print setlocale (LC_ALL, "0");
setlocale (LC_ALL, "fr");
?>
Locale get and set
<?
setlocale (LC_ALL, "fr");
print_r (localeconv ());
?>