No cache version.

Caching disabled. Default setting for this page:enabled (code LNG204)
If the display is too slow, you can disable the user mode to view the cached version.

Rechercher une fonction PHP

Locale::setDefault

locale_set_default

(PHP 5 >= 5.3.0, PHP 7, PECL intl >= 1.0.0)

Locale::setDefault -- locale_set_defaultSets the default runtime locale

PHP: Locale::setDefault - Manual Home of Manuel PHP  Contents Haut

Description

Object oriented style

public static Locale::setDefault ( string $locale ) : bool

Procedural style

locale_set_default ( string $locale ) : bool

Sets the default runtime locale to $locale. This changes the value of INTL global 'default_locale' locale identifier. UAX #35 extensions are accepted.

PHP: Locale::setDefault - Manual Home of Manuel PHP  Contents Haut

Parameters

locale

Is a BCP 47 compliant language tag.

PHP: Locale::setDefault - Manual Home of Manuel PHP  Contents Haut

Return Values

Returns TRUE on success or FALSE on failure.

PHP: Locale::setDefault - Manual Home of Manuel PHP  Contents Haut

Examples

Example #1 locale_set_default() example

<?php
locale_set_default
('de-DE');
echo 
locale_get_default();
?>

Example #2 OO example

<?php
Locale
::setDefault('de-DE');
echo 
Locale::getDefault();
?>

The above example will output:

de-DE

PHP: Locale::setDefault - Manual Home of Manuel PHP  Contents Haut

See Also

Find a PHP function
Error Infobrol

Can not display this page of the Infobrol website

Type of error (18-01)

Unknown format specifier "&"

Please try again in a few minutes…

Return to the home page




Steph