当前位置: 首页>>代码示例>>PHP>>正文


PHP WURFL_Handlers_Handler::applyRisWithTollerance方法代码示例

本文整理汇总了PHP中WURFL_Handlers_Handler::applyRisWithTollerance方法的典型用法代码示例。如果您正苦于以下问题:PHP WURFL_Handlers_Handler::applyRisWithTollerance方法的具体用法?PHP WURFL_Handlers_Handler::applyRisWithTollerance怎么用?PHP WURFL_Handlers_Handler::applyRisWithTollerance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在WURFL_Handlers_Handler的用法示例。


在下文中一共展示了WURFL_Handlers_Handler::applyRisWithTollerance方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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);
 }
开发者ID:muliadi,项目名称:jfportabledevice,代码行数:15,代码来源:NokiaHandler.php

示例2: 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

示例3: lookForMatchingUserAgent

	function lookForMatchingUserAgent($userAgent) {
		$tollerance = WURFL_Handlers_Utils::indexOfOrLength ( $userAgent, ";", strpos ( $userAgent, "SPV" ) );
		return parent::applyRisWithTollerance ( array_keys ( $this->userAgentsWithDeviceID ), $userAgent, $tollerance );
	}
开发者ID:richard-cai,项目名称:Zend-Framework-Extended,代码行数:4,代码来源:SPVHandler.php

示例4: lookForMatchingUserAgent

 function lookForMatchingUserAgent($userAgent)
 {
     $tolerance = WURFL_Handlers_Utils::firstSpace($userAgent);
     return parent::applyRisWithTollerance(array_keys($this->userAgentsWithDeviceID), $userAgent, $tolerance);
 }
开发者ID:muliadi,项目名称:jfportabledevice,代码行数:5,代码来源:MaemoBrowserHandler.php


注:本文中的WURFL_Handlers_Handler::applyRisWithTollerance方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。