Locale::getDisplayName

locale_get_display_name

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

Locale::getDisplayName -- locale_get_display_name入力ロケールの表示名を、適切に地域化して返す

説明

オブジェクト指向型

public static Locale::getDisplayName(string $locale, ?string $displayLocale = null): string|false

手続き型

locale_get_display_name(string $locale, ?string $displayLocale = null): string|false

入力ロケールの表示名を、適切に地域化して返します。 localenull の場合はデフォルトのロケールを使用します。

説明

オブジェクト指向型

public static Locale::getDisplayName(string $locale, string $in_locale = ?): string

手続き型

locale_get_display_name(string $locale, string $in_locale = ?): string

入力ロケールの表示名を、適切に地域化して返します。 $locale が null の場合はデフォルトのロケールを使用します。

パラメータ

locale

表示名を返したいロケール。

displayLocale

オプションのフォーマットロケール。

戻り値

ロケールの表示名を、 displayLocale にあわせた形式で返します。 失敗した場合に false を返します.

変更履歴

バージョン 説明
8.0.0 displayLocale は、nullable になりました。

例1 locale_get_display_name() の例

<?php
echo locale_get_display_name('sl-Latn-IT-nedis''en');
echo 
";\n";
echo 
locale_get_display_name('sl-Latn-IT-nedis''fr');
echo 
";\n";
echo 
locale_get_display_name('sl-Latn-IT-nedis''de');
?>

例2 オブジェクト指向の例

<?php
echo Locale::getDisplayName('sl-Latn-IT-nedis''en');
echo 
";\n";
echo 
Locale::getDisplayName('sl-Latn-IT-nedis''fr');
echo 
";\n";
echo 
Locale::getDisplayName('sl-Latn-IT-nedis''de');
?>

上の例の出力は以下となります。

Slovenian (Latin, Italy, Natisone dialect);
slov\xc3\xa8ne (latin, Italie, dialecte de Natisone;
Slowenisch (Lateinisch, Italien, NEDIS)
  

参考

関連キーワード:  locale, 表示, 地域, 入力, string, display, Locale, displayLocale, getDisplayName, 手続き