Locale::setDefault

(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
1
2
3
4
<?php
locale_set_default('de-DE');
echo locale_get_default();
?>
OO example
1
2
3
4
<?php
Locale::setDefault('de-DE');
echo Locale::getDefault();
?>
See also:

locale_get_default() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.