X-Git-Url: https://git-public.kairo.at/?p=php-utility-classes.git;a=blobdiff_plain;f=include%2Fclasses%2Fuseragent.php-class;h=f5a5f8db6b9f8158d0f343367245eae452fb6906;hp=ee9554368067844dea3fee35991dd5af25ff4102;hb=3cd2b543fb51197189309ba9ec54c1a45eadee97;hpb=1109f526885e1e23ab52321ddb941dda14eb5f2f diff --git a/include/classes/useragent.php-class b/include/classes/useragent.php-class index ee95543..f5a5f8d 100755 --- a/include/classes/useragent.php-class +++ b/include/classes/useragent.php-class @@ -359,6 +359,11 @@ class userAgent { $this->version = $regs[1]; $this->bot = false; } + elseif (preg_match('|Edge/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) { + $this->brand = 'Project Spartan'; + $this->version = null; + $this->bot = false; + } elseif (preg_match('|Chromium/([0-9a-zA-Z\.+]+)|', $this->uastring, $regs)) { $this->brand = 'Chromium'; $this->version = $regs[1]; @@ -1055,6 +1060,10 @@ class userAgent { $this->uadata['eng_version'] = $regs[1]; } } + elseif (preg_match('|Edge/([0-9\.]+)|', $this->uastring, $regs)) { + $this->uadata['engine'] = 'edge'; + $this->uadata['eng_version'] = $regs[1]; + } elseif ((strpos($this->brand, 'Internet Explorer') !== false) || (strpos($this->brand, 'FrontPage') !== false)) { if ((strpos(strtolower($this->uastring), 'mac') !== false) && (intval($this->getVersion()) >= 5)) { $this->uadata['engine'] = 'tasman'; @@ -1225,6 +1234,11 @@ class userAgent { $this->uadata['eng_version'] = null; } } + elseif ($this->hasEngine('edge')) { + if (preg_match('#Mozilla/5.0 \(([^;]+); (WOW64|Win64); ([^\);]+)\)#', $this->uastring, $regs)) { + $this->uadata['os'] = $regs[1].' ('.$regs[2].')'; + } + } elseif ($this->hasEngine('trident') || $this->hasEngine('tasman')) { if (preg_match('/Mozilla\/[^\(]+ \((IE [^;]+[^\)]*; )?((?:Mac|Win)[^;]+); ?(Win64|WOW64); ?Trident\/([^;\)]+);/i', $this->uastring, $regs)) { $this->uadata['eng_version'] = $regs[4];