快速业务通道

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

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-23

//操作系统
function userOS(){
$user_OSagent = PHP取得用户浏览器和系统函数 - 凌众科技

快速业务通道

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

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-23
content

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号

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 = PHP取得用户浏览器和系统函数 - 凌众科技

快速业务通道

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

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-05-23
content

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号

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";
} else

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号