PHP判断是手机端访问还是PC端访问网站
1个回答
展开全部
主要是通过$_SERVER ['HTTP_USER_AGENT']来判断的
自己整理的一个方法,代码如下
/**
* 是否是手机访问 ,true是,false否
* @return boolean
*/
public static function isMobile() {
$mobilebrowser_list = array (
'iphone',
'android',
'phone',
'wap',
'netfront',
'java',
'opera mobi',
'opera mini',
'ucweb',
'windows ce',
'symbian',
'series',
'webos',
'sony',
'blackberry',
'dopod',
'nokia',
'samsung',
'palmsource',
'xda',
'pieplus',
'meizu',
'midp',
'cldc',
'motorola',
'foma',
'docomo',
'up.browser',
'up.link',
'blazer',
'helio',
'hosin',
'huawei',
'novarra',
'coolpad',
'webos',
'techfaith',
'palmsource',
'alcatel',
'amoi',
'ktouch',
'nexian',
'ericsson',
'philips',
'sagem',
'wellcom',
'bunjalloo',
'maui',
'smartphone',
'iemobile',
'spice',
'bird',
'zte-',
'longcos',
'pantech',
'gionee',
'portalmmm',
'jig browser',
'hiptop',
'benq',
'haier',
'^lct',
'320x320',
'240x320',
'176x220'
);
$useragent = strtolower ( $_SERVER ['HTTP_USER_AGENT'] );
$mobile_change = false;
if (! empty ( $useragent )){
foreach ( $mobilebrowser_list as $v ){
if (stristr( $useragent, $v ) !== false){
return true;
}
}
}
return false;
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询