本文整理汇总了PHP中WURFL_Handlers_Utils::risMatch方法的典型用法代码示例。如果您正苦于以下问题:PHP WURFL_Handlers_Utils::risMatch方法的具体用法?PHP WURFL_Handlers_Utils::risMatch怎么用?PHP WURFL_Handlers_Utils::risMatch使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WURFL_Handlers_Utils
的用法示例。
在下文中一共展示了WURFL_Handlers_Utils::risMatch方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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 "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 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 );
}
示例4: lookForMatchingUserAgent
/**
*
* @param string $userAgent
* @return string
*/
function lookForMatchingUserAgent($userAgent)
{
$tolerance = 0;
if (WURFL_Handlers_Utils::checkIfStartsWith($userAgent, "Apple")) {
$tolerance = WURFL_Handlers_Utils::ordinalIndexOf($userAgent, " ", 3);
} else {
$tolerance = WURFL_Handlers_Utils::firstSemiColonOrLength($userAgent);
}
return WURFL_Handlers_Utils::risMatch(array_keys($this->userAgentsWithDeviceID), $userAgent, $tolerance);
}
示例5: lookForMatchingUserAgent
/**
* If UA starts with one of the following ("SEC-", "SAMSUNG-", "SCH"), apply RIS with FS.
* If UA starts with one of the following ("Samsung-","SPH", "SGH" ), apply RIS with First Space (not FS).
* If UA starts with "SAMSUNG/", apply RIS with threshold SS (Second Slash)
*
* @param string $userAgent
* @return string
*/
function lookForMatchingUserAgent($userAgent) {
if (WURFL_Handlers_Utils::checkIfStartsWith ( $userAgent, "SEC-" ) || WURFL_Handlers_Utils::checkIfStartsWith ( $userAgent, "SAMSUNG-" ) || WURFL_Handlers_Utils::checkIfStartsWith ( $userAgent, "SCH" )) {
$tollerance = WURFL_Handlers_Utils::firstSlash ( $userAgent );
} else if (WURFL_Handlers_Utils::checkIfStartsWith ( $userAgent, "Samsung" ) || WURFL_Handlers_Utils::checkIfStartsWith ( $userAgent, "SPH" ) || WURFL_Handlers_Utils::checkIfStartsWith ( $userAgent, "SGH" )) {
$tollerance = WURFL_Handlers_Utils::firstSpace ( $userAgent );
} else {
$tollerance = WURFL_Handlers_Utils::secondSlash ( $userAgent );
}
$this->logger->log ( "$this->prefix :Applying Conclusive Match for ua: $userAgent with tollerance $tollerance" );
return WURFL_Handlers_Utils::risMatch ( array_keys ( $this->userAgentsWithDeviceID ), $userAgent, $tollerance );
}
示例6: applyConclusiveMatch
/**
* If UA starts with Mozilla, apply LD with tollerance 5.
* If UA does not start with Mozilla, apply RIS on FS
*
* @param string $userAgent
* @return string
*/
function applyConclusiveMatch($userAgent)
{
$deviceId = WURFL_Constants::GENERIC;
if (WURFL_Handlers_Utils::checkIfStartsWith($userAgent, "Mozilla")) {
$deviceId = $this->applyMozillaConclusiveMatch($userAgent);
} else {
$tollerance = WURFL_Handlers_Utils::firstSlash($userAgent);
$match = WURFL_Handlers_Utils::risMatch(array_keys($this->userAgentsWithDeviceID), $userAgent, $tollerance);
$deviceId = $this->userAgentsWithDeviceID[$match];
}
return $deviceId;
}
示例7: lookForMatchingUserAgent
/**
*
* @param string $userAgent
* @return string
*/
function lookForMatchingUserAgent($userAgent) {
if ($this->isVodafone ( $userAgent )) {
$tolerance = WURFL_Handlers_Utils::ordinalIndexOf($userAgent, "LG", 1);
}
if (WURFL_Handlers_Utils::checkIfStartsWith ( $userAgent, "LG/" ) || WURFL_Handlers_Utils::checkIfStartsWith ( $userAgent, "LGE/" )) {
$tolerance = WURFL_Handlers_Utils::secondSlash ( $userAgent );
} else {
$tolerance = WURFL_Handlers_Utils::firstSlash ( $userAgent );
}
return WURFL_Handlers_Utils::risMatch ( array_keys ( $this->userAgentsWithDeviceID ), $userAgent, $tolerance );
}
示例8: lookForMatchingUserAgent
/**
*
* @param string $userAgent
*/
function lookForMatchingUserAgent($userAgent)
{
$tolerance = WURFL_Handlers_Utils::ordinalIndexOf($userAgent, "/", 3);
return WURFL_Handlers_Utils::risMatch(array_keys($this->userAgentsWithDeviceID), $userAgent, $tolerance);
}
示例9: getDeviceIDFromRIS
public function getDeviceIDFromRIS($userAgent, $tolerance)
{
$match = WURFL_Handlers_Utils::risMatch(array_keys($this->userAgentsWithDeviceID), $userAgent, $tolerance);
if (!empty($match)) {
return $this->userAgentsWithDeviceID[$match];
}
return WURFL_Constants::NO_MATCH;
}
示例10: lookForMatchingUserAgent
/**
* If UA starts with one of the following ("SEC-", "SAMSUNG-", "SCH"), apply RIS with FS.
* If UA starts with one of the following ("Samsung-","SPH", "SGH" ), apply RIS with First Space (not FS).
* If UA starts with "SAMSUNG/", apply RIS with threshold SS (Second Slash)
*
* @param string $userAgent
* @return string
*/
function lookForMatchingUserAgent($userAgent)
{
$tolerance = $this->tolerance($userAgent);
$this->logger->log("{$this->prefix} :Applying Conclusive Match for ua: {$userAgent} with tolerance {$tolerance}");
return WURFL_Handlers_Utils::risMatch(array_keys($this->userAgentsWithDeviceID), $userAgent, $tolerance);
}
示例11: lookForMatchingUserAgent
/**
*/
function lookForMatchingUserAgent($userAgent)
{
$tolerance = $this->tolerance($userAgent);
return WURFL_Handlers_Utils::risMatch(array_keys($this->userAgentsWithDeviceID), $userAgent, $tolerance);
}
示例12: applyRisWithTollerance
protected function applyRisWithTollerance($userAgetsList, $target, $tollerance)
{
return WURFL_Handlers_Utils::risMatch($userAgetsList, $target, $tollerance);
}