本文整理汇总了PHP中Mobile_Detect::isSony方法的典型用法代码示例。如果您正苦于以下问题:PHP Mobile_Detect::isSony方法的具体用法?PHP Mobile_Detect::isSony怎么用?PHP Mobile_Detect::isSony使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mobile_Detect
的用法示例。
在下文中一共展示了Mobile_Detect::isSony方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_device_name
function get_device_name($userAgent)
{
$detect = new Mobile_Detect();
$detect->setUserAgent($userAgent);
$deviceType = $detect->isMobile() ? $detect->isTablet() ? 'tablet' : 'cell' : 'computer';
if ($deviceType == 'computer') {
return $deviceType;
}
$name = 'unknow';
do {
if ($detect->isiPhone()) {
$name = 'iPhone';
break;
}
if ($detect->isBlackBerry()) {
$name = 'BlackBerry';
break;
}
if ($detect->isHTC()) {
$name = 'HTC';
break;
}
if ($detect->isNexus()) {
$name = 'Nexus';
break;
}
if ($detect->isDell()) {
$name = 'Dell';
break;
}
if ($detect->isMotorola()) {
$name = 'Motorola';
break;
}
if ($detect->isSamsung()) {
$name = 'Samsung';
break;
}
if ($detect->isLG()) {
$name = 'LG';
break;
}
if ($detect->isSony()) {
$name = 'Sony';
break;
}
if ($detect->isAsus()) {
$name = 'Asus';
break;
}
if ($detect->isPalm()) {
$name = 'Palm';
break;
}
if ($detect->isVertu()) {
$name = 'Vertu';
break;
}
if ($detect->isPantech()) {
$name = 'Pantech';
break;
}
if ($detect->isFly()) {
$name = 'Fly';
break;
}
if ($detect->isSimValley()) {
$name = 'SimValley';
break;
}
if ($detect->isGenericPhone()) {
$name = 'Generic';
break;
}
if ($detect->isiPad()) {
$name = 'iPad';
break;
}
if ($detect->isNexusTablet()) {
$name = 'Nexus';
break;
}
if ($detect->isSamsungTablet()) {
$name = 'Samsung';
break;
}
if ($detect->isKindle()) {
$name = 'Kindle';
break;
}
if ($detect->isSurfaceTablet()) {
$name = 'Surface';
break;
}
if ($detect->isAsusTablet()) {
$name = 'Asus';
break;
}
if ($detect->isBlackBerryTablet()) {
$name = 'BlackBerry';
//.........这里部分代码省略.........