Home  >  Article  >  php教程  >  PHP如何识别是电脑或手机访问网站

PHP如何识别是电脑或手机访问网站

WBOY
WBOYOriginal
2016-06-13 09:25:11855browse

PHP如何识别是电脑或手机访问网站

现在通过手机访问网站越来越流行了,如果我们希望统计一下网站通过pc,手机移动端的各自访问量的情况,或者需要为手机移动端做一些特别的处理的话,那么我们就需要对访问网站的用户的客户端做一下鉴别了,下面这个实例就是通过php识别用户是电脑还是手机访问网站的方法。

0?$matches[0]:'';
	$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');
	$found_mobile=CheckSubstrs($mobile_os_list,$useragent_commentsblock)||CheckSubstrs($mobile_token_list,$useragent);
	if($found_mobile){ 
		return true;
	}else{ 
		return false;
	}
}
function CheckSubstrs($substrs,$text){ 
	foreach($substrs as $substr){
		if(false!==strpos($text,$substr)){ 
			return true;
		} 
		return false;
	}
}
if(isMobile()){
	echo '手机登录 m.phpernote.com';
}else{
	echo '电脑登录 www.phpernote.com';
}

您可能感兴趣的文章

  • 利用.htaccess拒绝某ip访问网站
  • php计算当前是一年或一月中第几周的函数
  • php获取客户端电脑屏幕宽度,高度,分辨率的方法
  • php异步调试和线上调试网站程序的方法
  • php 获取今日、昨日、上周、本月的起始时间戳和结束时间戳的方法
  • 良好用户体验的网站主页的设计必须知道的12点
  • thinkphp模板中判断volist循环的最后一条记录
  • Js地址栏特效(显示页面内所有加链接的图片的大小和查看当前的浏览器的高度)
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn