Locale::acceptFromHttp
locale_accept_from_http
(PHP 5 >= 5.3.0, PECL intl >= 1.0.0)
Locale::acceptFromHttp -- locale_accept_from_http — Devine la meilleure locale à partir de l'en-tête HTTP "Accept-Language"
Description
Style orienté objet
public
static
string
Locale::acceptFromHttp
( string
$header
)Style procédural
string
locale_accept_from_http
( string
$header
)Essaie de trouver une locale qui peut satisfaire la liste de langue qui est demandée par l'en-tête HTTP "Accept-Language".
Liste de paramètres
-
header
-
La chaîne contenant l'en-tête "Accept-Language", au format de la RFC 2616.
Valeurs de retour
L'identifiant de locale correspondant.
Exemples
Exemple #1 Exemple avec locale_accept_from_http(), procédural
<?php $locale = locale_accept_from_http($_SERVER['HTTP_ACCEPT_LANGUAGE']); echo $locale; ?>
Exemple #2 Exemple avec locale_accept_from_http(), POO
<?php $locale = Locale::acceptFromHttp($_SERVER['HTTP_ACCEPT_LANGUAGE']); echo $locale; ?>
L'exemple ci-dessus va afficher :
en_US