Home > Backend Development > PHP Tutorial > PHP取得用户浏览器和系统函数_PHP

PHP取得用户浏览器和系统函数_PHP

WBOY
Release: 2016-06-01 12:20:37
Original
863 people have browsed it

//操作系统
function userOS(){
$user_OSagent = $_SERVER['HTTP_USER_AGENT'];

if(strpos($user_OSagent,"NT 5.1")) {
$visitor_os ="Windows XP (SP2)";
} elseif(strpos($user_OSagent,"NT 5.2") && strpos($user_OSagent,"WOW64")){
$visitor_os ="Windows XP 64-bit Edition";
} elseif(strpos($user_OSagent,"NT 5.2")) {
$visitor_os ="Windows 2003";
} elseif(strpos($user_OSagent,"NT 6.0")) {
$visitor_os ="Windows Vista";
} elseif(strpos($user_OSagent,"NT 5.0")) {
$visitor_os ="Windows 2000";
} elseif(strpos($user_OSagent,"4.9")) {
$visitor_os ="Windows ME";
} elseif(strpos($user_OSagent,"NT 4")) {
$visitor_os ="Windows NT 4.0";
} elseif(strpos($user_OSagent,"98")) {
$visitor_os ="Windows 98";
} elseif(strpos($user_OSagent,"95")) {
$visitor_os ="Windows 95";
} elseif(strpos($user_OSagent,"Mac")) {
$visitor_os ="Mac";
} elseif(strpos($user_OSagent,"Linux")) {
$visitor_os ="Linux";
} elseif(strpos($user_OSagent,"Unix")) {
$visitor_os ="Unix";
} elseif(strpos($user_OSagent,"FreeBSD")) {
$visitor_os ="FreeBSD";
} elseif(strpos($user_OSagent,"SunOS")) {
$visitor_os ="SunOS";
} elseif(strpos($user_OSagent,"BeOS")) {
$visitor_os ="BeOS";
} elseif(strpos($user_OSagent,"OS/2")) {
$visitor_os ="OS/2";
} elseif(strpos($user_OSagent,"PC")) {
$visitor_os ="Macintosh";
} elseif(strpos($user_OSagent,"AIX")) {
$visitor_os ="AIX";
} elseif(strpos($user_OSagent,"IBM OS/2")) {
$visitor_os ="IBM OS/2";
} elseif(strpos($user_OSagent,"BSD")) {
$visitor_os ="BSD";
} elseif(strpos($user_OSagent,"NetBSD")) {
$visitor_os ="NetBSD";
} else {
$visitor_os ="其它";
}
return $visitor_os;
}

//浏览器设置
function userBrowser(){
$user_OSagent = $_SERVER['HTTP_USER_AGENT'];
if(strpos($user_OSagent,"Maxthon") && strpos($user_OSagent,"MSIE")) {
$visitor_browser ="Maxthon(Microsoft IE)";
}elseif(strpos($user_OSagent,"Maxthon 2.0")) {
$visitor_browser ="Maxthon 2.0";
}elseif(strpos($user_OSagent,"Maxthon")) {
$visitor_browser ="Maxthon";
}elseif(strpos($user_OSagent,"MSIE 7.0")) {
$visitor_browser ="MSIE 7.0";
}elseif(strpos($user_OSagent,"MSIE 6.0")) {
$visitor_browser ="MSIE 6.0";
} elseif(strpos($user_OSagent,"MSIE 5.5")) {
$visitor_browser ="MSIE 5.5";
} elseif(strpos($user_OSagent,"MSIE 5.0")) {
$visitor_browser ="MSIE 5.0";
} elseif(strpos($user_OSagent,"MSIE 4.01")) {
$visitor_browser ="MSIE 4.01";
} elseif(strpos($user_OSagent,"NetCaptor")) {
$visitor_browser ="NetCaptor";
} elseif(strpos($user_OSagent,"Netscape")) {
$visitor_browser ="Netscape";
} elseif(strpos($user_OSagent,"Lynx")) {
$visitor_browser ="Lynx";
} elseif(strpos($user_OSagent,"Opera")) {
$visitor_browser ="Opera";
} elseif(strpos($user_OSagent,"Konqueror")) {
$visitor_browser ="Konqueror";
} elseif(strpos($user_OSagent,"Mozilla/5.0")) {
$visitor_browser ="Mozilla";
} elseif(strpos($user_OSagent,"U")) {
$visitor_browser ="Firefox";
} else {
$visitor_browser ="其它";
}
return $visitor_browser;
}

$out_ieos ="您的操作系统以及浏览器信息:".userOS()." ".userBrowser();
echo $out_ieos;

 显示地址:http://demo.huangchao.org/os.php

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template