當前位置: 首頁>>代碼示例>>PHP>>正文


PHP HTTP::getAcceptLanguage方法代碼示例

本文整理匯總了PHP中SimpleSAML\Utils\HTTP::getAcceptLanguage方法的典型用法代碼示例。如果您正苦於以下問題:PHP HTTP::getAcceptLanguage方法的具體用法?PHP HTTP::getAcceptLanguage怎麽用?PHP HTTP::getAcceptLanguage使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在SimpleSAML\Utils\HTTP的用法示例。


在下文中一共展示了HTTP::getAcceptLanguage方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: getHTTPLanguage

 /**
  * This method returns the preferred language for the user based on the Accept-Language HTTP header.
  *
  * @return string The preferred language based on the Accept-Language HTTP header, or null if none of the languages
  * in the header is available.
  */
 private function getHTTPLanguage()
 {
     $languageScore = HTTP::getAcceptLanguage();
     // for now we only use the default language map. We may use a configurable language map in the future
     $languageMap = self::$defaultLanguageMap;
     // find the available language with the best score
     $bestLanguage = null;
     $bestScore = -1.0;
     foreach ($languageScore as $language => $score) {
         // apply the language map to the language code
         if (array_key_exists($language, $languageMap)) {
             $language = $languageMap[$language];
         }
         if (!in_array($language, $this->availableLanguages, true)) {
             // skip this language - we don't have it
             continue;
         }
         /* Some user agents use very limited precision of the quality value, but order the elements in descending
          * order. Therefore we rely on the order of the output from getAcceptLanguage() matching the order of the
          * languages in the header when two languages have the same quality.
          */
         if ($score > $bestScore) {
             $bestLanguage = $language;
             $bestScore = $score;
         }
     }
     return $bestLanguage;
 }
開發者ID:mrvanes,項目名稱:simplesamlphp,代碼行數:34,代碼來源:Language.php

示例2: getAcceptLanguage

 /**
  * @deprecated This method will be removed in SSP 2.0. Please use SimpleSAML\Utils\HTTP::getAcceptLanguage() instead.
  */
 public static function getAcceptLanguage()
 {
     return \SimpleSAML\Utils\HTTP::getAcceptLanguage();
 }
開發者ID:jstormes,項目名稱:simplesamlphp,代碼行數:7,代碼來源:Utilities.php

示例3: getHTTPLanguage

 /**
  * This function gets the prefered language for the user based on the Accept-Language http header.
  *
  * @return The prefered language based on the Accept-Language http header, or NULL if none of the
  *         languages in the header were available.
  */
 private function getHTTPLanguage()
 {
     $languageScore = \SimpleSAML\Utils\HTTP::getAcceptLanguage();
     /* For now we only use the default language map. We may use a configurable language map
      * in the future.
      */
     $languageMap = self::$defaultLanguageMap;
     /* Find the available language with the best score. */
     $bestLanguage = NULL;
     $bestScore = -1.0;
     foreach ($languageScore as $language => $score) {
         /* Apply the language map to the language code. */
         if (array_key_exists($language, $languageMap)) {
             $language = $languageMap[$language];
         }
         if (!in_array($language, $this->availableLanguages, TRUE)) {
             /* Skip this language - we don't have it. */
             continue;
         }
         /* Some user agents use very limited precicion of the quality value, but order the
          * elements in descending order. Therefore we rely on the order of the output from
          * getAcceptLanguage() matching the order of the languages in the header when two
          * languages have the same quality.
          */
         if ($score > $bestScore) {
             $bestLanguage = $language;
             $bestScore = $score;
         }
     }
     return $bestLanguage;
 }
開發者ID:jstormes,項目名稱:simplesamlphp,代碼行數:37,代碼來源:Template.php


注:本文中的SimpleSAML\Utils\HTTP::getAcceptLanguage方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。