PHP獲取訪問(wèn)設(shè)備信息的方法示例
本文實(shí)例講述了PHP獲取訪問(wèn)設(shè)備信息的方法。分享給大家供大家參考,具體如下:
<?php
header("Content:Content-type:text/html;charset=utf-8");
// // 作用取得客戶端的ip、地理位置、瀏覽器、以及訪問(wèn)設(shè)備
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 "獲取瀏覽器信息失??!";}
}
////獲得訪客瀏覽器語(yǔ)言
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 = "簡(jiǎn)體中文";
}elseif(preg_match("/zh/i",$lang)){
$lang = "繁體中文";
}else{
$lang = "English";
}
return json_encode("瀏覽器語(yǔ)言為".$lang);
}else{
return "獲取瀏覽器語(yǔ)言失?。?;
}
}
//獲取客戶端操作系統(tǒng)信息包括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 = '未知操作系統(tǒng)';
}
return json_encode("系統(tǒng)為".$os);
}
//獲得訪客真實(shí)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])) { // 排除局域網(wǎng)ip
$ip = $ips[$i];
break;
}
}
$tip = empty($_SERVER['REMOTE_ADDR']) ? $ip : $_SERVER['REMOTE_ADDR'];
if ($tip == "127.0.0.1") { // 獲得本地真實(shí)IP
return $this->get_onlineip();
} else {
return $tip;
}
}
// //根據(jù)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); // 根據(jù)新浪api接口獲取
if ($ipadd) {
$charset = iconv("gbk", "utf-8", $ipadd);
preg_match_all("/[\x{4e00}-\x{9fa5}]+/u", $charset, $ipadds);
return $ipadds; // 返回一個(gè)二維數(shù)組
} else {
return "addree is none";
}
}
//獲得本地真實(shí)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;
?>
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《php正則表達(dá)式用法總結(jié)》、《php curl用法總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《PHP數(shù)據(jù)結(jié)構(gòu)與算法教程》、《php程序設(shè)計(jì)算法總結(jié)》、《PHP數(shù)學(xué)運(yùn)算技巧總結(jié)》及《php常見(jiàn)數(shù)據(jù)庫(kù)操作技巧匯總》
希望本文所述對(duì)大家PHP程序設(shè)計(jì)有所幫助。
- PHP簡(jiǎn)單判斷iPhone、iPad、Android及PC設(shè)備的方法
- PHP簡(jiǎn)單判斷手機(jī)設(shè)備的方法
- PHP代碼判斷設(shè)備是手機(jī)還是平板電腦(兩種方法)
- PHP實(shí)現(xiàn)連接設(shè)備、通訊和發(fā)送命令的方法
- PHP實(shí)現(xiàn)根據(jù)設(shè)備類型自動(dòng)跳轉(zhuǎn)相應(yīng)頁(yè)面的方法
- PHP檢測(cè)移動(dòng)設(shè)備類mobile detection使用實(shí)例
- 通過(guò)JavaScript或PHP檢測(cè)Android設(shè)備的代碼
- 簡(jiǎn)單的移動(dòng)設(shè)備檢測(cè)PHP腳本代碼
- PHP獲取用戶訪問(wèn)IP地址的5種方法
- php網(wǎng)站判斷用戶是否是手機(jī)訪問(wèn)的方法
- php獲取訪問(wèn)者IP地址匯總
相關(guān)文章
PHP ADODB生成HTML表格函數(shù)rs2html功能【附錯(cuò)誤處理函數(shù)用法】
這篇文章主要介紹了PHP ADODB生成HTML表格函數(shù)rs2html功能,結(jié)合實(shí)例形式分析了php使用ADODB類使用函數(shù)rs2html輸出結(jié)果集生成HTML表格相關(guān)操作技巧,并附錯(cuò)誤處理函數(shù)errorMsg用法,需要的朋友可以參考下2018-05-05
PHP轉(zhuǎn)換文本框內(nèi)容為HTML格式的方法
這篇文章主要介紹了PHP轉(zhuǎn)換文本框內(nèi)容為HTML格式的方法,通過(guò)自定義函數(shù)實(shí)現(xiàn)字符串轉(zhuǎn)換為HTML格式的功能,涉及php針對(duì)HTML標(biāo)簽的替換技巧,需要的朋友可以參考下2016-07-07
PHPCrawl爬蟲(chóng)庫(kù)實(shí)現(xiàn)抓取酷狗歌單的方法示例
這篇文章主要介紹了PHPCrawl爬蟲(chóng)庫(kù)實(shí)現(xiàn)抓取酷狗歌單的方法,涉及PHPCrawl爬蟲(chóng)庫(kù)的使用及正則匹配相關(guān)操作技巧,需要的朋友可以參考下2017-12-12
php中如何判斷一個(gè)網(wǎng)頁(yè)請(qǐng)求是ajax請(qǐng)求還是普通請(qǐng)求
以下是對(duì)php中如何判斷一個(gè)網(wǎng)頁(yè)請(qǐng)求是ajax請(qǐng)求還是普通請(qǐng)求的實(shí)現(xiàn)方法進(jìn)行了詳細(xì)的分析介紹,需要的朋友可以過(guò)來(lái)參考下2013-08-08
PHP number_format函數(shù)原理及實(shí)例解析
這篇文章主要介紹了PHP number_format函數(shù)原理及實(shí)例解析,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2020-07-07

