PHP获取访问设备信息的方法示例
程序员文章站
2023-11-18 16:20:04
本文实例讲述了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程序设计有所帮助。
上一篇: navicat 12激活
下一篇: 详解js加减乘除精确计算