PHP/Development/I18N Locale — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 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 ());
?>