本文整理汇总了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 );
}
示例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 );
}
示例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);
}
示例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);
}
示例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;
}
示例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);
}
示例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;
}
示例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;
}