Locale::acceptFromHttp

locale_accept_from_http

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

Locale::acceptFromHttp -- locale_accept_from_http最もあてはまるロケールを HTTP "Accept-Language" ヘッダにもとづいて探す

説明

オブジェクト指向型

public static Locale::acceptFromHttp(string $header): string|false

手続き型

locale_accept_from_http(string $header): string|false

HTTP "Accept-Language" ヘッダが要求する言語リストを満たすロケールを探します。

パラメータ

header

"Accept-Language" ヘッダを含む文字列。RFC 2616 形式。

戻り値

対応するロケール ID を返します。

header の長さが INTL_MAX_LOCALE_LEN を超えた場合、false を返します。

例1 locale_accept_from_http() の例

<?php
$locale 
locale_accept_from_http($_SERVER['HTTP_ACCEPT_LANGUAGE']);
echo 
$locale;
?>

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

<?php
$locale 
Locale::acceptFromHttp($_SERVER['HTTP_ACCEPT_LANGUAGE']);
echo 
$locale;
?>

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

en_US

参考

  • locale_lookup() - その言語にマッチする言語タグの一覧を検索する

関連キーワード:  ヘッダ, Accept, Locale, locale, from, string, header, acceptFromHttp, 言語, 対応