1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
| function getBrowser($agent) { $outputer = false; if (preg_match('/MSIE\s([^\s|;]+)/i', $agent)) { $outputer = '<i></i> IE浏览器'; } else if (preg_match('/FireFox\/([^\s]+)/i', $agent)) { $outputer = '<i></i> 火狐浏览器'; } else if (preg_match('/Maxthon([\d]*)\/([^\s]+)/i', $agent)) { $outputer = '<i></i> 傲游浏览器'; } else if (preg_match('#SE 2([a-zA-Z0-9.]+)#i', $agent)) { $outputer = '<i></i> 搜狗浏览器'; } else if (preg_match('#360([a-zA-Z0-9.]+)#i', $agent)) { $outputer = '<i></i> 360浏览器'; } else if (preg_match('/Edge([\d]*)\/([^\s]+)/i', $agent)) { $outputer = '<i></i> Edge'; } else if (preg_match('/EdgiOS([\d]*)\/([^\s]+)/i', $agent)) { $outputer = '<i></i> Edge'; } else if (preg_match('/UC/i', $agent)) { $outputer = '<i></i> UC浏览器 '; }else if (preg_match('/OPR/i', $agent)) { $outputer = '<i></i> 欧朋浏览器'; } else if (preg_match('/MicroMesseng/i', $agent)) { $outputer = '<i></i> 微信内嵌浏览器'; } else if (preg_match('/WeiBo/i', $agent)) { $outputer = '<i></i> 微博内嵌浏览器'; } else if (preg_match('/QQ/i', $agent)||preg_match('/QQBrowser\/([^\s]+)/i', $agent)) { $outputer = '<i></i> QQ浏览器'; } else if (preg_match('/MQBHD/i', $agent)) { $outputer = '<i></i> QQ浏览器 '; } else if (preg_match('/BIDU/i', $agent)) { $outputer = '<i></i> 百度浏览器'; } else if (preg_match('/LBBROWSER/i', $agent)) { $outputer = '<i></i> 猎豹浏览器'; } else if (preg_match('/TheWorld/i', $agent)) { $outputer = '<i></i> 世界之窗浏览器'; } else if (preg_match('/XiaoMi/i', $agent)) { $outputer = '<i></i> 小米浏览器'; } else if (preg_match('/UBrowser/i', $agent)) { $outputer = '<i></i> UC浏览器 '; } else if (preg_match('/mailapp/i', $agent)) { $outputer = '<i></i> email内嵌浏览器'; } else if (preg_match('/2345Explorer/i', $agent)) { $outputer = '<i></i> 2345浏览器'; } else if (preg_match('/Sleipnir/i', $agent)) { $outputer = '<i></i> 神马浏览器'; } else if (preg_match('/YaBrowser/i', $agent)) { $outputer = '<i></i> Yandex浏览器'; } else if (preg_match('/Opera[\s|\/]([^\s]+)/i', $agent)) { $outputer = '<i></i> Opera浏览器'; } else if (preg_match('/MZBrowser/i', $agent)) { $outputer = '<i></i> 魅族浏览器'; } else if (preg_match('/VivoBrowser/i', $agent)) { $outputer = '<i></i> vivo浏览器'; } else if (preg_match('/Quark/i', $agent)) { $outputer = '<i></i> 夸克浏览器'; } else if (preg_match('/mixia/i', $agent)) { $outputer = '<i></i> 米侠浏览器'; }else if (preg_match('/fusion/i', $agent)) { $outputer = '<i></i> 客户端'; } else if (preg_match('/CoolMarket/i', $agent)) { $outputer = '<i></i> 基安内置浏览器'; } else if (preg_match('/Thunder/i', $agent)) { $outputer = '<i></i> 迅雷内置浏览器'; } else if (preg_match('/Chrome([\d]*)\/([^\s]+)/i', $agent)) { $outputer = '<i></i> Chrome '; } else if (preg_match('/safari\/([^\s]+)/i', $agent)) { $outputer = '<i></i> Safari'; } else{ return false; } return $outputer; }
function getOs($agent) { $os = false;
if (preg_match('/win/i', $agent)) { if (preg_match('/nt 6.0/i', $agent)) { $os = '<i></i> Windows Vista'; } else if (preg_match('/nt 6.1/i', $agent)) { $os = '<i></i> Windows 7'; } else if (preg_match('/nt 6.2/i', $agent)) { $os = '<i></i> Windows 8'; } else if(preg_match('/nt 6.3/i', $agent)) { $os = '<i></i> Windows 8.1'; } else if(preg_match('/nt 5.1/i', $agent)) { $os = '<i></i> Windows XP'; } else if (preg_match('/nt 10.0/i', $agent)) { $os = '<i></i> Windows 10'; } else{ $os = '<i></i> Windows'; } } else if (preg_match('/android/i', $agent)) { if (preg_match('/android 9/i', $agent)) { $os = '<i></i> Android P'; } else if (preg_match('/android 8/i', $agent)) { $os = '<i></i> Android O'; } else if (preg_match('/android 7/i', $agent)) { $os = '<i></i> Android N'; } else if (preg_match('/android 6/i', $agent)) { $os = '<i></i> Android M'; } else if (preg_match('/android 5/i', $agent)) { $os = '<i></i> Android L'; } else{ $os = '<i></i> Android'; } } else if (preg_match('/ubuntu/i', $agent)) { $os = '<i></i> Linux'; } else if (preg_match('/linux/i', $agent)) { $os = '<i></i> Linux'; } else if (preg_match('/iPhone/i', $agent)) { $os = '<i></i> iPhone'; } else if (preg_match('/iPad/i', $agent)) { $os = '<i></i> iPad'; } else if (preg_match('/mac/i', $agent)) { $os = '<i></i> OSX'; }else if (preg_match('/cros/i', $agent)) { $os = 'chrome os'; }else { return false; } return $os; }
|