PHP判断是否手机登陆是根据$_SERVER['HTTP_USER_AGENT']判断,它是返回用户访问该页面的代理信息。参照网络如下:
/**
* 判断字符串是否包含某一值
*@Link http://www.phpddt.com
*/
function contains($str = '', $search_str)
{
return strpos($str, $search_str) === FALSE ? FALSE : TRUE;
}
/**
* 判断手机登陆
*/
function is_mobilephone()
{
$agent = $_SERVER['HTTP_USER_AGENT'];
//$keywords = array("Android", "iPhone", "iPod", "iPad", "Windows Phone", "MQQBrowser");
$mobile_os_list=array('Google Wireless Transcoder','Windows CE','WindowsCE','Symbian','Android','armv6l','armv5','Mobile','CentOS','mowser','AvantGo','Opera Mobi','J2ME/MIDP','Smartphone','Go.Web','Palm','iPAQ');
$mobile_token_list=array('Profile/MIDP','Configuration/CLDC-','160×160','176×220','240×240','240×320','320×240','UP.Browser','UP.Link','SymbianOS','PalmOS','PocketPC','SonyEricsson','Nokia','BlackBerry','Vodafone','BenQ','Novarra-Vision','Iris','NetFront','HTC_','Xda_','SAMSUNG-SGH','Wapaka','DoCoMo','iPhone','iPod');
$mobile_list = array_merge($mobile_token_list, $mobile_os_list);
//排除Windows
if (!contains($agent, "Windows NT") || (contains($agent, "Windows NT") && contains($agent, "compatible; MSIE"))) {
//排除Mac
if (!contains($agent, "Windows NT") && !contains($agent, "Macintosh")) {
foreach ($mobile_list as $k => $item) {
if (contains($agent, $item)) {
return true;
}
}
}
}
return false;
}
(责任编辑:好模板) |


ecshop仿京东商城蓝色风格
人气:1048
谷歌翻译仿panli代购程序
人气:2319
外贸珠宝饰品ecshop模板
人气:609
ecshop玩具礼品商城模板
人气:552
ecshop仿醉品茶叶网模板|绿
人气:1913
女人化妆品首饰ecshop模板
人气:447