【小白专用】PHP识别是电脑或手机访问网站

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

<?php
function isMobile(){ 
	$useragent=isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '';
	$useragent_commentsblock=preg_match('|\(.*?\)|',$useragent,$matches)>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';
}

<?php

function isWeixin() {

    if (strpos($_SERVER['HTTP_USER_AGENT'], 'MicroMessenger') !== false) {
  
              return true;
  
    } else {
  
              return false;
  
    }
  
  }

  if(isWeixin()){
	echo '微信浏览';
}else{
	echo '电脑浏览';
}

<?php


$userAgent = $_SERVER['HTTP_USER_AGENT']; // 获取User-Agent信息
 
// Windows操作系统相关标志
if (strpos($userAgent, 'Windows') !== false) {
    echo "这是Windows操作系统";
} else if (strpos($userAgent, 'Macintosh') !== false || strpos($userAgent, 'iPhone') !== false || strpos($userAgent, 'iPad') !== false) {
    echo "这是Mac或iOS设备";
} else if (strpos($userAgent, 'Linux') !== false) {
    echo "这是Linux操作系统";
} else if (strpos($userAgent, 'Android') !== false) {
    echo "这是安卓手机";
} else {
    echo "无法确定操作系统类型";
}

function getOS(){
    $agent = strtolower($_SERVER['HTTP_USER_AGENT']);

    if(strpos($agent, 'windows nt')) {
    $platform = 'windows';
    } elseif(strpos($agent, 'macintosh')) {
    $platform = 'mac';
    } elseif(strpos($agent, 'ipod')) {
    $platform = 'ipod';
    } elseif(strpos($agent, 'ipad')) {
    $platform = 'ipad';
    } elseif(strpos($agent, 'iphone')) {
    $platform = 'iphone';
    } elseif (strpos($agent, 'android')) {
    $platform = 'android';
    } elseif(strpos($agent, 'unix')) {
    $platform = 'unix';
    } elseif(strpos($agent, 'linux')) {
    $platform = 'linux';
    } else {
    $platform = 'other';
    }

    return $platform;
}
echo getOS();

猜你喜欢

转载自blog.csdn.net/zgscwxd/article/details/135406991