本文整理汇总了PHP中WURFL_Handlers_Utils::checkIfStartsWith方法的典型用法代码示例。如果您正苦于以下问题:PHP WURFL_Handlers_Utils::checkIfStartsWith方法的具体用法?PHP WURFL_Handlers_Utils::checkIfStartsWith怎么用?PHP WURFL_Handlers_Utils::checkIfStartsWith使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WURFL_Handlers_Utils
的用法示例。
在下文中一共展示了WURFL_Handlers_Utils::checkIfStartsWith方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: canHandle
public function canHandle($userAgent)
{
if (WURFL_Handlers_Utils::isDesktopBrowser($userAgent)) {
return false;
}
return WURFL_Handlers_Utils::checkIfStartsWith($userAgent, "Philips") || WURFL_Handlers_Utils::checkIfStartsWith($userAgent, "PHILIPS");
}
示例2: canHandle
public function canHandle($userAgent)
{
if (WURFL_Handlers_Utils::isDesktopBrowser($userAgent)) {
return false;
}
return WURFL_Handlers_Utils::checkIfStartsWith($userAgent, 'Qtek');
}
示例3: applyRecoveryMatch
function applyRecoveryMatch($userAgent)
{
if (WURFL_Handlers_Utils::checkIfStartsWith($userAgent, "DoCoMo/2")) {
return "docomo_generic_jap_ver2";
}
return "docomo_generic_jap_ver1";
}
示例4: 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 );
}
示例5: canHandle
public function canHandle($userAgent)
{
if (WURFL_Handlers_Utils::isDesktopBrowser($userAgent)) {
return false;
}
return WURFL_Handlers_Utils::checkIfStartsWith($userAgent, 'Mozilla') && WURFL_Handlers_Utils::checkIfContains($userAgent, 'UCBrowser');
}
示例6: canHandle
/**
* Intercept all UAs Starting with Mozilla and Containing MSIE and are not mobile browsers
*
* @param string $userAgent
* @return boolean
*/
public function canHandle($userAgent)
{
if (WURFL_Handlers_Utils::isMobileBrowser($userAgent)) {
return false;
}
return WURFL_Handlers_Utils::checkIfStartsWith($userAgent, "Mozilla") && WURFL_Handlers_Utils::checkIfContains($userAgent, "MSIE");
}
示例7: applyRecoveryMatch
public function applyRecoveryMatch($userAgent)
{
$version = self::getWindowsPhoneVersion($userAgent);
if ($version == "8.1") {
return 'generic_ms_phone_os8_1';
}
if ($version == "8.0") {
return 'generic_ms_phone_os8';
}
if ($version == "7.8") {
return 'generic_ms_phone_os7_8';
}
if ($version == "7.5") {
return 'generic_ms_phone_os7_5';
}
if ($version == "7.0") {
return 'generic_ms_phone_os7';
}
if ($version == "6.5") {
return 'generic_ms_winmo6_5';
}
//These are probably UAs of the type "Windows Phone Ad Client (Xna)/5.1.0.0 BMID/E67970D969"
if (WURFL_Handlers_Utils::checkIfStartsWith($userAgent, 'Windows Phone Ad Client') || WURFL_Handlers_Utils::checkIfStartsWith($userAgent, 'WindowsPhoneAdClient')) {
return 'generic_ms_phone_os7';
}
return WURFL_Constants::NO_MATCH;
}
示例8: canHandle
public function canHandle($userAgent)
{
if (WURFL_Handlers_Utils::isDesktopBrowser($userAgent)) {
return false;
}
return WURFL_Handlers_Utils::checkIfStartsWith($userAgent, 'Mozilla/5') && WURFL_Handlers_Utils::checkIfContainsAnyOf($userAgent, array('iPhone', 'iPod', 'iPad'));
}
示例9: applyConclusiveMatch
public function applyConclusiveMatch($userAgent)
{
// Look for RIS delimited UAs first
$delimiter_idx = strpos($userAgent, WURFL_Constants::RIS_DELIMITER);
if ($delimiter_idx !== false) {
$tolerance = $delimiter_idx + strlen(WURFL_Constants::RIS_DELIMITER);
return $this->getDeviceIDFromRIS($userAgent, $tolerance);
}
// Opera Mini
if (WURFL_Handlers_Utils::checkIfContains($userAgent, 'Opera Mini')) {
if (WURFL_Handlers_Utils::checkIfContains($userAgent, ' Build/')) {
$tolerance = WURFL_Handlers_Utils::indexOfOrLength($userAgent, ' Build/');
return $this->getDeviceIDFromRIS($userAgent, $tolerance);
}
$prefixes = array('Opera/9.80 (J2ME/MIDP; Opera Mini/5' => 'uabait_opera_mini_android_v50', 'Opera/9.80 (Android; Opera Mini/5.0' => 'uabait_opera_mini_android_v50', 'Opera/9.80 (Android; Opera Mini/5.1' => 'uabait_opera_mini_android_v51');
foreach ($prefixes as $prefix => $defaultID) {
if (WURFL_Handlers_Utils::checkIfStartsWith($userAgent, $prefix)) {
return $this->getDeviceIDFromRIS($userAgent, strlen($prefix));
}
}
}
// Opera Mobi
if (WURFL_Handlers_Utils::checkIfContains($userAgent, 'Opera Mobi')) {
$tolerance = WURFL_Handlers_Utils::secondSlash($userAgent);
return $this->getDeviceIDFromRIS($userAgent, $tolerance);
}
// Opera Tablet
if (WURFL_Handlers_Utils::checkIfContains($userAgent, 'Opera Tablet')) {
$tolerance = WURFL_Handlers_Utils::secondSlash($userAgent);
return $this->getDeviceIDFromRIS($userAgent, $tolerance);
}
// Fennec
if (WURFL_Handlers_Utils::checkIfContainsAnyOf($userAgent, array('Fennec', 'Firefox'))) {
$tolerance = WURFL_Handlers_Utils::indexOfOrLength($userAgent, ')');
return $this->getDeviceIDFromRIS($userAgent, $tolerance);
}
// UCWEB7
if (WURFL_Handlers_Utils::checkIfContains($userAgent, 'UCWEB7')) {
// The tolerance is after UCWEB7, not before
$find = 'UCWEB7';
$tolerance = strpos($userAgent, $find) + strlen($find);
if ($tolerance > strlen($userAgent)) {
$tolerance = strlen($userAgent);
}
return $this->getDeviceIDFromRIS($userAgent, $tolerance);
}
// NetFrontLifeBrowser
if (WURFL_Handlers_Utils::checkIfContains($userAgent, 'NetFrontLifeBrowser/2.2')) {
$find = 'NetFrontLifeBrowser/2.2';
$tolerance = strpos($userAgent, $find) + strlen($find);
if ($tolerance > strlen($userAgent)) {
$tolerance = strlen($userAgent);
}
return $this->getDeviceIDFromRIS($userAgent, $tolerance);
}
// Standard RIS Matching
$tolerance = min(WURFL_Handlers_Utils::indexOfOrLength($userAgent, ' Build/'), WURFL_Handlers_Utils::indexOfOrLength($userAgent, ' AppleWebKit'));
return $this->getDeviceIDFromRIS($userAgent, $tolerance);
}
示例10: applyConclusiveMatch
public function applyConclusiveMatch($userAgent)
{
if (WURFL_Handlers_Utils::checkIfStartsWith($userAgent, "NEC-")) {
$tolerance = WURFL_Handlers_Utils::firstSlash($userAgent);
return $this->getDeviceIDFromRIS($userAgent, $tolerance);
}
return $this->getDeviceIDFromLD($userAgent, self::NEC_KGT_TOLERANCE);
}
示例11: 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);
}
示例12: 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);
}
示例13: applyConclusiveMatch
public function applyConclusiveMatch($userAgent)
{
if (WURFL_Handlers_Utils::checkIfStartsWith($userAgent, "Pantech")) {
$tolerance = self::PANTECH_TOLERANCE;
} else {
$tolerance = WURFL_Handlers_Utils::firstSlash($userAgent);
}
return $this->getDeviceIDFromRIS($userAgent, $tolerance);
}
示例14: 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 );
}
示例15: applyConclusiveMatch
public function applyConclusiveMatch($userAgent)
{
if (WURFL_Handlers_Utils::checkIfStartsWith($userAgent, 'SonyEricsson')) {
$tolerance = WURFL_Handlers_Utils::firstSlash($userAgent) - 1;
return $this->getDeviceIDFromRIS($userAgent, $tolerance);
}
$tolerance = WURFL_Handlers_Utils::secondSlash($userAgent);
return $this->getDeviceIDFromRIS($userAgent, $tolerance);
}