• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    PHP获取访问设备信息的方法示例

    本文实例讲述了PHP获取访问设备信息的方法。分享给大家供大家参考,具体如下:

    ?php
    header("Content:Content-type:text/html;charset=utf-8");
    //   // 作用取得客户端的ip、地理位置、浏览器、以及访问设备
       class get_equipment_info{
       ////获得访客浏览器类型
       function GetBrowser(){
        if(!empty($_SERVER['HTTP_USER_AGENT']))
        {
         $br = $_SERVER['HTTP_USER_AGENT'];
         if (preg_match('/MSIE/i',$br)){
           $br = 'MSIE';
         }
         elseif (preg_match('/Firefox/i',$br)){
           $br = 'Firefox';
         }elseif (preg_match('/Chrome/i',$br)){
           $br = 'Chrome';
         }elseif (preg_match('/Safari/i',$br)){
           $br = 'Safari';
         }elseif (preg_match('/Opera/i',$br)){
           $br = 'Opera';
         }else {
           $br = 'Other';
         }
           return json_encode("浏览器为".$br);
         }else{
           return "获取浏览器信息失败!";}
       }
       ////获得访客浏览器语言
       function GetLang()
       {
          if(!empty($_SERVER['HTTP_ACCEPT_LANGUAGE'])){
            $lang = $_SERVER['HTTP_ACCEPT_LANGUAGE'];
            $lang = substr($lang,0,5);
            if(preg_match("/zh-cn/i",$lang)){
              $lang = "简体中文";
            }elseif(preg_match("/zh/i",$lang)){
              $lang = "繁体中文";
            }else{
              $lang = "English";
            }
            return json_encode("浏览器语言为".$lang);
          }else{
          return "获取浏览器语言失败!";
          }
       }
       //获取客户端操作系统信息包括win10
      function GetOs(){
        $agent = $_SERVER['HTTP_USER_AGENT'];
        $os = false;
        if (preg_match('/win/i', $agent)  strpos($agent, '95'))
        {
          $os = 'Windows 95';
        }
        else if (preg_match('/win 9x/i', $agent)  strpos($agent, '4.90'))
        {
          $os = 'Windows ME';
        }
        else if (preg_match('/win/i', $agent)  preg_match('/98/i', $agent))
        {
          $os = 'Windows 98';
        }
        else if (preg_match('/win/i', $agent)  preg_match('/nt 6.0/i', $agent))
        {
          $os = 'Windows Vista';
        }
        else if (preg_match('/win/i', $agent)  preg_match('/nt 6.1/i', $agent))
        {
          $os = 'Windows 7';
        }
        else if (preg_match('/win/i', $agent)  preg_match('/nt 6.2/i', $agent))
        {
          $os = 'Windows 8';
        }else if(preg_match('/win/i', $agent)  preg_match('/nt 10.0/i', $agent))
        {
          $os = 'Windows 10';#添加win10判断
        }else if (preg_match('/win/i', $agent)  preg_match('/nt 5.1/i', $agent))
        {
          $os = 'Windows XP';
        }
        else if (preg_match('/win/i', $agent)  preg_match('/nt 5/i', $agent))
        {
          $os = 'Windows 2000';
        }
        else if (preg_match('/win/i', $agent)  preg_match('/nt/i', $agent))
        {
          $os = 'Windows NT';
        }
        else if (preg_match('/win/i', $agent)  preg_match('/32/i', $agent))
        {
          $os = 'Windows 32';
        }
        else if (preg_match('/linux/i', $agent))
        {
          $os = 'Linux';
        }
        else if (preg_match('/unix/i', $agent))
        {
          $os = 'Unix';
        }
        else if (preg_match('/sun/i', $agent)  preg_match('/os/i', $agent))
        {
          $os = 'SunOS';
        }
        else if (preg_match('/ibm/i', $agent)  preg_match('/os/i', $agent))
        {
          $os = 'IBM OS/2';
        }
        else if (preg_match('/Mac/i', $agent)  preg_match('/PC/i', $agent))
        {
          $os = 'Macintosh';
        }
        else if (preg_match('/PowerPC/i', $agent))
        {
          $os = 'PowerPC';
        }
        else if (preg_match('/AIX/i', $agent))
        {
          $os = 'AIX';
        }
        else if (preg_match('/HPUX/i', $agent))
        {
          $os = 'HPUX';
        }
        else if (preg_match('/NetBSD/i', $agent))
        {
          $os = 'NetBSD';
        }
        else if (preg_match('/BSD/i', $agent))
        {
          $os = 'BSD';
        }
        else if (preg_match('/OSF1/i', $agent))
        {
          $os = 'OSF1';
        }
        else if (preg_match('/IRIX/i', $agent))
        {
          $os = 'IRIX';
        }
        else if (preg_match('/FreeBSD/i', $agent))
        {
          $os = 'FreeBSD';
        }
        else if (preg_match('/teleport/i', $agent))
        {
          $os = 'teleport';
        }
        else if (preg_match('/flashget/i', $agent))
        {
          $os = 'flashget';
        }
        else if (preg_match('/webzip/i', $agent))
        {
          $os = 'webzip';
        }
        else if (preg_match('/offline/i', $agent))
        {
          $os = 'offline';
        }
        else
        {
          $os = '未知操作系统';
        }
        return json_encode("系统为".$os);
      }
      //获得访客真实ip
       function Getip()
      {
        if (! empty($_SERVER["HTTP_CLIENT_IP"])) {
          $ip = $_SERVER["HTTP_CLIENT_IP"];
        }
        if (! empty($_SERVER['HTTP_X_FORWARDED_FOR'])) { // 获取代理ip
          $ips = explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']);
        }
        if ($ip) {
          $ips = array_unshift($ips, $ip);
        }
        $count = count($ips);
        for ($i = 0; $i  $count; $i ++) {
          if (! preg_match("/^(10|172\.16|192\.168)\./i", $ips[$i])) { // 排除局域网ip
            $ip = $ips[$i];
            break;
          }
        }
        $tip = empty($_SERVER['REMOTE_ADDR']) ? $ip : $_SERVER['REMOTE_ADDR'];
        if ($tip == "127.0.0.1") { // 获得本地真实IP
          return $this->get_onlineip();
        } else {
          return $tip;
        }
      }
       // //根据ip获得访客所在地地名
      function Getaddress($ip = '')
      {
        if (empty($ip)) {
          $ip = $this->Getip();
        }
        $ipadd = file_get_contents("http://int.dpool.sina.com.cn/iplookup/iplookup.php?ip=" . $ip); // 根据新浪api接口获取
        if ($ipadd) {
          $charset = iconv("gbk", "utf-8", $ipadd);
          preg_match_all("/[\x{4e00}-\x{9fa5}]+/u", $charset, $ipadds);
          return $ipadds; // 返回一个二维数组
        } else {
          return "addree is none";
        }
      }
      //获得本地真实IP
      // function get_onlineip()
      // {
      //   $mip = file_get_contents("http://city.ip138.com/city0.asp");
      //   if ($mip) {
      //     preg_match("/\[.*\]/", $mip, $sip);
      //     $p = array(
      //       "/\[/",
      //       "/\]/"
      //     );
      //     return preg_replace($p, "", $sip[0]);
      //   } else {
      //     return "获取本地IP失败!";
      //   }
      // }
    }
     // $info = new get_equipment_info();
     //   echo json_decode($info -> GetLang());
     //   echo json_decode($info -> GetOs());
     //   echo json_decode($info -> GetBrowser());
     //   print_r($info -> Getaddress());
     //   echo $info -> Getip();
     //   echo $info -> get_onlineip();
     //   die;
    ?>
    
    

    更多关于PHP相关内容感兴趣的读者可查看本站专题:《PHP网络编程技巧总结》、《php正则表达式用法总结》、《php curl用法总结》、《PHP数组(Array)操作技巧大全》、《php字符串(string)用法总结》、《PHP数据结构与算法教程》、《php程序设计算法总结》、《PHP数学运算技巧总结》及《php常见数据库操作技巧汇总》

    希望本文所述对大家PHP程序设计有所帮助。

    您可能感兴趣的文章:
    • PHP简单判断iPhone、iPad、Android及PC设备的方法
    • PHP简单判断手机设备的方法
    • PHP代码判断设备是手机还是平板电脑(两种方法)
    • PHP实现连接设备、通讯和发送命令的方法
    • PHP实现根据设备类型自动跳转相应页面的方法
    • PHP检测移动设备类mobile detection使用实例
    • 通过JavaScript或PHP检测Android设备的代码
    • 简单的移动设备检测PHP脚本代码
    • PHP获取用户访问IP地址的5种方法
    • php网站判断用户是否是手机访问的方法
    • php获取访问者IP地址汇总
    上一篇:PHP通过调用新浪API生成t.cn格式短网址链接的方法详解
    下一篇:Yii2.0框架实现带分页的多条件搜索功能示例
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    PHP获取访问设备信息的方法示例 PHP,获取,访问,设备,信息,