(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0)
sets the default runtime locale
public static bool Locale::setDefault ( string $locale )
Object oriented style
Procedural style
bool locale_set_default ( string
$locale )Sets the default runtime locale to $locale. This changes the value of INTL global 'default_locale' locale identifier. UAX #35 extensions are accepted.
Parameters:
locale
Is a BCP 47 compliant language tag containing the
Returns:
Returns TRUE on success or FALSE on failure.
Examples:
locale_set_default() example
<?php
locale_set_default('de-DE');
echo locale_get_default();
?>
OO example
<?php
Locale::setDefault('de-DE');
echo Locale::getDefault();
?>
See also:
Please login to continue.