当前位置: 首页>>代码示例>>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;未经允许,请勿转载。