require_once 'I18Nv2.php';
mixed I18Nv2::setLocale (string $locale [, int $cat = LC_ALL])
mixed I18Nv2::setLocale
Set environment to the specified locale.
Example 34-1. Set a locale:
1 require_once 'I18Nv2.php'; 2 I18Nv2::setLocale('en_GB');
a valid locale like en_US or de_DE
the locale category - usually LC_ALL
Returns string used system locale or false on failure.
This function should be called statically.
See also I18Nv2::setLocale() example, I18Nv2::getInfo(), I18Nv2::lastLocale(), PHPs setlocale().