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


PHP WURFL_Handlers_Utils::firstSpace方法代码示例

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


在下文中一共展示了WURFL_Handlers_Utils::firstSpace方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: applyConclusiveMatch

 /**
  * Apply RIS on Firts slash
  *
  * @param string $userAgent
  * @return string
  */
 public function applyConclusiveMatch($userAgent)
 {
     if (WURFL_Handlers_Utils::checkIfStartsWith($userAgent, "CFNetwork/")) {
         $tolerance = WURFL_Handlers_Utils::firstSpace($userAgent);
     } else {
         $tolerance = WURFL_Handlers_Utils::firstSlash($userAgent);
     }
     return $this->getDeviceIDFromRIS($userAgent, $tolerance);
 }
开发者ID:dcunited08,项目名称:wurfl-api,代码行数:15,代码来源:CatchAllRisHandler.php

示例2: 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 );
	}
开发者ID:richard-cai,项目名称:Zend-Framework-Extended,代码行数:19,代码来源:SamsungHandler.php

示例3: applyConclusiveMatch

 public function applyConclusiveMatch($userAgent)
 {
     if (WURFL_Handlers_Utils::checkIfStartsWithAnyOf($userAgent, array("SEC-", "SAMSUNG-", "SCH"))) {
         $tolerance = WURFL_Handlers_Utils::firstSlash($userAgent);
     } elseif (WURFL_Handlers_Utils::checkIfStartsWithAnyOf($userAgent, array("Samsung", "SPH", "SGH"))) {
         $tolerance = WURFL_Handlers_Utils::firstSpace($userAgent);
     } else {
         $tolerance = WURFL_Handlers_Utils::secondSlash($userAgent);
     }
     return $this->getDeviceIDFromRIS($userAgent, $tolerance);
 }
开发者ID:acasademont,项目名称:wurfl,代码行数:11,代码来源:SamsungHandler.php

示例4: tolerance

 private function tolerance($userAgent)
 {
     if (WURFL_Handlers_Utils::checkIfStartsWithAnyOf($userAgent, array("SEC-", "SAMSUNG-", "SCH"))) {
         return WURFL_Handlers_Utils::firstSlash($userAgent);
     }
     if (WURFL_Handlers_Utils::checkIfStartsWithAnyOf($userAgent, array("Samsung-", "SPH", "SGH"))) {
         return WURFL_Handlers_Utils::firstSpace($userAgent);
     }
     if (WURFL_Handlers_Utils::checkIfStartsWith($userAgent, "SAMSUNG/")) {
         return WURFL_Handlers_Utils::secondSlash($userAgent);
     }
     return WURFL_Handlers_Utils::firstSlash($userAgent);
 }
开发者ID:realsoc,项目名称:mediawiki-extensions,代码行数:13,代码来源:SamsungHandler.php

示例5: applyConclusiveMatch

 public function applyConclusiveMatch($userAgent)
 {
     $tolerance = WURFL_Handlers_Utils::firstSpace($userAgent);
     return $this->getDeviceIDFromRIS($userAgent, $tolerance);
 }
开发者ID:dcunited08,项目名称:wurfl-api,代码行数:5,代码来源:MitsubishiHandler.php

示例6: testFirstSpace

 public function testFirstSpace()
 {
     $this->assertEquals(6, WURFL_Handlers_Utils::firstSpace('Value 12'));
     $this->assertNull(WURFL_Handlers_Utils::firstSpace('Value'));
 }
开发者ID:acasademont,项目名称:wurfl,代码行数:5,代码来源:Tolerance.php

示例7: lookForMatchingUserAgent

 function lookForMatchingUserAgent($userAgent)
 {
     $tollerance = WURFL_Handlers_Utils::firstSpace($userAgent);
     return WURFL_Handlers_Utils::risMatch(array_keys($this->userAgentsWithDeviceID), $userAgent, $tollerance);
 }
开发者ID:eusholli,项目名称:drupal,代码行数:5,代码来源:MitsubishiHandler.php


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