方法一:判断http_user_agent
代码如下 复制代码
$agent = strtolower($_server['http_user_agent']);
if(strpos($agent,netfront) || strpos($agent,iphone) || strpos($agent,midp-2.0) || strpos($agent,opera mini) || strpos($agent,ucweb) || strpos($agent,android) || strpos($agent,windows ce) || strpos($agent,symbianos)) {
header(http/1.1 301 moved permanently);
header(location:####); die;
}
方法二:判断http_accept
代码如下 复制代码
if (isset($_server['http_accept']) && (strpos($_server['http_accept'],'vnd.wap.wml')!==false) &&(strpos($_server['http_accept'],'text/html')===false || (strpos($_server['http_accept'],'vnd.wap.wml') strpos($_server['http_accept'],'text/html')) )) {//手机访问
header(http/1.1 301 moved permanently);
header(location:####); die;
}
以上两个方法都有局限性,
下面将此两种方法整合起来判断
代码如下 复制代码
function ismobile() {
if(isset($_server['http_x_wap_profile'])) {
return true;
}
if(isset ($_server['http_via'])) {
//找不到为flase,否则为true
return stristr($_server['http_via'], wap) ? true : false;
}
if(isset($_server['http_user_agent'])) {
//此数组有待完善
$clientkeywords = array (
'nokia',
'sony',
'ericsson',
'mot',
'samsung',
'htc',
'sgh',
'lg',
'sharp',
'sie-',
'philips',
'panasonic',
'alcatel',
'lenovo',
'iphone',
'ipod',
'blackberry',
'meizu',
'android',
'netfront',
'symbian',
'ucweb',
'windowsce',
'palm',
'operamini',
'operamobi',
'openwave',
'nexusone',
'cldc',
'midp',
'wap',
'mobile'
);
// 从http_user_agent中查找手机浏览器的关键字
if(preg_match(/( . implode('|', $clientkeywords) . )/i, strtolower($_server['http_user_agent']))) {
return true;
}
}
//协议法,因为有可能不准确,放到最后判断
if (isset ($_server['http_accept'])) {
// 如果只支持wml并且不支持html那一定是移动设备
// 如果支持wml和html但是wml在html之前则是移动设备
if ((strpos($_server['http_accept'], 'vnd.wap.wml') !== false) && (strpos($_server['http_accept'], 'text/html') === false || (strpos($_server['http_accept'], 'vnd.wap.wml') return true;
}
}
return false;
}
上面的方法也存在一些小问题,这里我根据自己的经验来告诉大我们可以使用屏幕宽度来实现再加机器类型了,因为有时http_user_agent信息在我们上面并未定义过了,不过上面实现几乎兼容了主流手机了。
我们还可以使用js
if (bisipad || bisiphoneos || bismidp || bisuc7 || bisuc || bisandroid || bisce || biswm) {
window.location.href = 'http://url/mobile.html';
} else {
window.location = 'http://url/pc.html';
}
}
browserredirect();
http://www.bkjia.com/phpjc/632726.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/632726.htmltecharticle最近移动互联网火爆了我们需要做一个pc站与wap站,要实现如果用户是电脑访问wap站就自动进入pc站,反之一样,下面我整理了一些代码与大...
