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


PHP WURFL_Handlers_Utils::ldMatch方法代碼示例

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


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

示例1: lookForMatchingUserAgent

	/**
	 * If UA starts with "NEC", apply RIS of FS
	 * If UA starts with KGT, apply LD with threshold 2
	 *
	 * @param string $userAgent
	 * @return boolean
	 */
	function lookForMatchingUserAgent($userAgent) {
		if (WURFL_Handlers_Utils::checkIfStartsWith ( $userAgent, "NEC-" )) {
			$tollerance = WURFL_Handlers_Utils::firstSlash ( $userAgent );
			return WURFL_Handlers_Utils::risMatch ( array_keys ( $this->userAgentsWithDeviceID ), $userAgent, $tollerance );
		}
		return WURFL_Handlers_Utils::ldMatch ( array_keys ( $this->userAgentsWithDeviceID ), $userAgent, self::NEC_KGT_TOLLERANCE );
	}
開發者ID:richard-cai,項目名稱:Zend-Framework-Extended,代碼行數:14,代碼來源:NecHandler.php

示例2: lookForMatchingUserAgent

	/**
	 * If UA starts with "SonyEricsson", apply RIS with FS as a threshold.
	 * If UA contains "SonyEricsson" somewhere in the middle,
	 * apply RIS with threshold second slash
	 *
	 * @param string $userAgent
	 * @return string
	 */
	function lookForMatchingUserAgent($userAgent) {
		if (WURFL_Handlers_Utils::checkIfStartsWith ( $userAgent, "SonyEricsson" )) {
			$tollerance = WURFL_Handlers_Utils::firstSlash ( $userAgent );
			return WURFL_Handlers_Utils::risMatch ( array_keys ( $this->userAgentsWithDeviceID ), $userAgent, $tollerance );
		}
		$tollerance = WURFL_Handlers_Utils::secondSlash ( $userAgent );
		return WURFL_Handlers_Utils::ldMatch ( array_keys ( $this->userAgentsWithDeviceID ), $userAgent, $tollerance );
	
	}
開發者ID:richard-cai,項目名稱:Zend-Framework-Extended,代碼行數:17,代碼來源:SonyEricssonHandler.php

示例3: lookForMatchingUserAgent

 /**
  *  If the User Agent contains the String Nokia, apply TokensMatcher strategy
  *  using the Nokia Tokens Provider else
  *	Apply then LD with a threshold of 3
  *
  * @param string $userAgent
  * @return string
  */
 function lookForMatchingUserAgent($userAgent)
 {
     $userAgents = array_keys($this->userAgentsWithDeviceID);
     if (WURFL_Handlers_Utils::checkIfContains($userAgent, "Nokia")) {
         $tollearnce = WURFL_Handlers_Utils::indexOfOrLength($userAgent, "/", strpos($userAgent, "Nokia"));
         return parent::applyRisWithTollerance($userAgents, $userAgent, $tollearnce);
     }
     return WURFL_Handlers_Utils::ldMatch($userAgents, $userAgent, self::TOLLERANCE);
 }
開發者ID:eusholli,項目名稱:drupal,代碼行數:17,代碼來源:VodafoneHandler.php

示例4: lookForMatchingUserAgentx

 /**
  * If "OpVer x.x.x.x is present, then apply TokensMatcher wit thresold 7,
  * otherwise apply LD with thresold 5.
  *
  * @param string $userAgent
  * @return string
  */
 function lookForMatchingUserAgentx($userAgent)
 {
     $userAgents = array_keys($this->userAgentsWithDeviceID);
     $spvTokensProvider = new WURFL_Handlers_Matcher_SPVProvider();
     if ($spvTokensProvider->canApply($userAgent)) {
         $tokenMatcher = new WURFL_Handlers_Matcher_TokenMatcher($spvTokensProvider);
         return $tokenMatcher->match($userAgents, $userAgent, 7);
     }
     return WURFL_Handlers_Utils::ldMatch($userAgents, $userAgent, 5);
 }
開發者ID:eusholli,項目名稱:drupal,代碼行數:17,代碼來源:SPVHandler.php

示例5: applyMozilla4ConclusiveMatch

 private function applyMozilla4ConclusiveMatch($userAgent)
 {
     $this->logger->log("Applying Catch All Conclusive Match Mozilla 4 for ua: {$userAgent}");
     $this->mozilla4UserAgentsWithDeviceID = $this->persistenceProvider->load(self::MOZILLA4);
     if (!array_key_exists($userAgent, $this->mozilla4UserAgentsWithDeviceID)) {
         $match = WURFL_Handlers_Utils::ldMatch(array_keys($this->mozilla4UserAgentsWithDeviceID), $userAgent, self::MOZILLA_TOLLERACE);
     }
     if (!empty($match)) {
         return $this->mozilla4UserAgentsWithDeviceID[$match];
     }
     return NULL;
 }
開發者ID:realsoc,項目名稱:mediawiki-extensions,代碼行數:12,代碼來源:CatchAllHandler.php

示例6: lookForMatchingUserAgent

 /**
  * Apply LD Match with tollerance 5
  *
  */
 function lookForMatchingUserAgent($userAgent)
 {
     return WURFL_Handlers_Utils::ldMatch(array_keys($this->userAgentsWithDeviceID), $userAgent, self::AOL_LD_TOLLERANCE);
 }
開發者ID:muliadi,項目名稱:jfportabledevice,代碼行數:8,代碼來源:AOLHandler.php

示例7: getDeviceIDFromLD

 public function getDeviceIDFromLD($userAgent, $tolerance = null)
 {
     $match = WURFL_Handlers_Utils::ldMatch(array_keys($this->userAgentsWithDeviceID), $userAgent, $tolerance);
     if (!empty($match)) {
         return $this->userAgentsWithDeviceID[$match];
     }
     return WURFL_Constants::NO_MATCH;
 }
開發者ID:vazahat,項目名稱:dudex,代碼行數:8,代碼來源:Handler.php

示例8: applyMozilla4ConclusiveMatch

 private function applyMozilla4ConclusiveMatch($userAgent)
 {
     $this->logger->log("Applying Catch All Conclusive Match Mozilla 4 for ua: {$userAgent}");
     if (!array_key_exists($userAgent, $this->mozilla4UserAgentsWithDeviceID)) {
         $match = WURFL_Handlers_Utils::ldMatch(array_keys($this->mozilla4UserAgentsWithDeviceID), $userAgent, self::MOZILLA_TOLERANCE);
     }
     if (!empty($match)) {
         return $this->mozilla4UserAgentsWithDeviceID[$match];
     }
     return WURFL_Constants::NO_MATCH;
 }
開發者ID:vazahat,項目名稱:dudex,代碼行數:11,代碼來源:CatchAllHandler.php


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