If `$locale` is invalid, the return value is actually the value of `$locale`, not `NULL` or `FALSE` as you might expect.
(If `$in_locale` is invalid, but `$locale` is valid, the return value is the language name in the default locale.)
(PHP 5 >= 5.3.0, PHP 7, PHP 8, PECL intl >= 1.0.0)
Locale::getDisplayLanguage -- locale_get_display_language — Retourne un nom approprié pour l'affichage d'un nom de langue
Style orienté objet
$locale
, ?string $displayLocale
= null
): string|falseStyle procédural
Retourne un nom approprié pour l'affichage d'un nom de langue.
Si la valeur null
est passée en argument, la locale par défaut est utilisée.
locale
La locale dont il faut retourner le nom de langue
displayLocale
Un format optionnel pour l'affichage du nom de langue.
Le nom de la langue à afficher pour la locale
, dans le format
défini par displayLocale
, ou false
si une erreur survient.
Version | Description |
---|---|
8.0.0 |
displayLocale est désormais nullable.
|
Exemple #1 Exemple avec locale_get_display_language(), procédural
<?php
echo locale_get_display_language('sl-Latn-IT-nedis', 'en');
echo ";\n";
echo locale_get_display_language('sl-Latn-IT-nedis', 'fr');
echo ";\n";
echo locale_get_display_language('sl-Latn-IT-nedis', 'de');
?>
Exemple #2 Exemple avec locale_get_display_language(), POO
<?php
echo Locale::getDisplayLanguage('sl-Latn-IT-nedis', 'en');
echo ";\n";
echo Locale::getDisplayLanguage('sl-Latn-IT-nedis', 'fr');
echo ";\n";
echo Locale::getDisplayLanguage('sl-Latn-IT-nedis', 'de');
?>
L'exemple ci-dessus va afficher :
Slovenian; slov\xc3\xa8ne; Slowenisch
If `$locale` is invalid, the return value is actually the value of `$locale`, not `NULL` or `FALSE` as you might expect.
(If `$in_locale` is invalid, but `$locale` is valid, the return value is the language name in the default locale.)