BrowserHelper.php
1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
namespace common\helpers;
/**
* 浏览器助手
* Class BrowserHelper
* @package common\helpers
*/
class BrowserHelper
{
/**
* 判断是否微信内置浏览器
* @return bool
*/
public static function isWeixin()
{
$agent = strtolower($_SERVER['HTTP_USER_AGENT']);
if ( strpos($agent, 'micromessenger') !== false ) {
return true;
}
return false;
}
/**
* 判断是否IOS设备
* @return bool
*/
public static function isIOS()
{
$agent = strtolower($_SERVER['HTTP_USER_AGENT']);
if(strpos($agent, 'iphone') || strpos($agent, 'ipad')) {
return true;
}
return false;
}
/**
* 判断是否android设备
* @return bool
*/
public static function isAndroid()
{
$agent = strtolower($_SERVER['HTTP_USER_AGENT']);
if(strpos($agent, 'android')) {
return true;
}
return false;
}
}