本文整理汇总了PHP中WURFL_Handlers_Handler类的典型用法代码示例。如果您正苦于以下问题:PHP WURFL_Handlers_Handler类的具体用法?PHP WURFL_Handlers_Handler怎么用?PHP WURFL_Handlers_Handler使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了WURFL_Handlers_Handler类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: lookForMatchingUserAgent
/**
*
* Apply RIS with FS (First Slash) after Nokia String as a threshold.
*
*
* @param string $userAgent
* @return string
*/
function lookForMatchingUserAgent($userAgent)
{
//$tolerance = WU
$tolerance = WURFL_Handlers_Utils::indexOfAnyOrLength($userAgent, array("/", " "), strpos($userAgent, "Nokia"));
$userAgents = array_keys($this->userAgentsWithDeviceID);
return parent::applyRisWithTollerance($userAgents, $userAgent, $tolerance);
}
示例2: lookForMatchingUserAgent
/**
* if UA starts with "KDDI/", apply RIS with Second Slash Otherwise apply RIS
* with FS
*/
function lookForMatchingUserAgent($userAgent)
{
if (WURFL_Handlers_Utils::checkIfStartsWith($userAgent, "KDDI/")) {
$tollerance = WURFL_Handlers_Utils::secondSlash($userAgent);
return WURFL_Handlers_Utils::risMatch(array_keys($this->userAgentsWithDeviceID), $userAgent, $tollerance);
}
return parent::lookForMatchingUserAgent($userAgent);
}
示例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: match
/**
* Finds the device id for the given request - if it is not found it
* delegates to the next available handler
*
* @param WURFL_Request_GenericRequest $request
* @return string WURFL Device ID for matching device
*/
public function match(WURFL_Request_GenericRequest $request)
{
if ($this->canHandle($request->userAgentNormalized)) {
return $this->applyMatch($request);
}
if (isset($this->nextHandler)) {
return $this->nextHandler->match($request);
}
return WURFL_Constants::GENERIC;
}
示例5: persistData
function persistData()
{
ksort($this->mozilla4UserAgentsWithDeviceID);
ksort($this->mozilla5UserAgentsWithDeviceID);
$this->persistenceProvider->save(self::MOZILLA4, $this->mozilla4UserAgentsWithDeviceID);
$this->persistenceProvider->save(self::MOZILLA5, $this->mozilla5UserAgentsWithDeviceID);
parent::persistData();
}
示例6:
function __construct($wurflContext, $userAgentNormalizer = null)
{
parent::__construct($wurflContext, $userAgentNormalizer);
}
示例7: lookForMatchingUserAgent
function lookForMatchingUserAgent($userAgent) {
$tollerance = WURFL_Handlers_Utils::indexOfOrLength ( $userAgent, ";", strpos ( $userAgent, "SPV" ) );
return parent::applyRisWithTollerance ( array_keys ( $this->userAgentsWithDeviceID ), $userAgent, $tollerance );
}
示例8:
function __construct($normalizer)
{
parent::__construct($normalizer);
}
示例9:
function __construct($userAgentNormalizer)
{
parent::__construct($userAgentNormalizer);
}
示例10: lookForMatchingUserAgent
function lookForMatchingUserAgent($userAgent)
{
$tolerance = WURFL_Handlers_Utils::firstSpace($userAgent);
return parent::applyRisWithTollerance(array_keys($this->userAgentsWithDeviceID), $userAgent, $tolerance);
}