使用 php 进行可靠的用户浏览器检测

Posted

技术标签:

【中文标题】使用 php 进行可靠的用户浏览器检测【英文标题】:reliable user browser detection with php 【发布时间】:2011-01-16 11:42:33 【问题描述】:

尝试仅使用 php 检测用户的浏览器,$_SERVER['HTTP_USER_AGENT'] 是一种可靠的方法吗?我应该选择get_browser 函数吗?你觉得哪一种能带来更精确的结果?

如果这种方法比较实用,是否不建议使用它来输出相关的 CSS 链接,例如:

if(stripos($_SERVER['HTTP_USER_AGENT'],"mozilla")!==false)
   echo '<link type="text/css" href="mozilla.css" />';

我注意到this question,但我想澄清这是否有利于面向 CSS 的检测。

更新: 一些非常可疑的东西:我在 IE 7 上尝试了echo $_SERVER['HTTP_USER_AGENT'];,这就是它的输出:

Mozilla/4.0(兼容;MSIE 7.0; 视窗 NT 6.0; SLCC1; .NET CLR 2.0.50727;媒体中心PC 5.0; .NET CLR 3.5.30729; .NET CLR 3.0.30618)

Safari 也提供了一些奇怪的东西,其中包含“mozilla”。什么给了?

【问题讨论】:

“Mozilla/4.0”位由于遗留原因而存在...即使在 IE8 中也是如此。 IE 将自己标识为 Mozilla 4.0 一段时间。我读过他们这样做是出于兼容性原因,但现在找不到源。如果非要我猜的话,我会说这是 NetScape/IE 时代的碎片。 User-Agent 不可靠。但这是猜测的唯一方法。 @bobby webaim.org/blog/user-agent-string-history 在最新版本的 Firefox 上运行没有问题。 【参考方案1】:

检查此代码,我发现这很有用。不要检查 Mozilla 因为大多数浏览器都使用它作为用户代理字符串

if(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== FALSE)
   echo 'Internet explorer';
 elseif(strpos($_SERVER['HTTP_USER_AGENT'], 'Trident') !== FALSE) //For Supporting IE 11
    echo 'Internet explorer';
 elseif(strpos($_SERVER['HTTP_USER_AGENT'], 'Firefox') !== FALSE)
   echo 'Mozilla Firefox';
 elseif(strpos($_SERVER['HTTP_USER_AGENT'], 'Chrome') !== FALSE)
   echo 'Google Chrome';
 elseif(strpos($_SERVER['HTTP_USER_AGENT'], 'Opera Mini') !== FALSE)
   echo "Opera Mini";
 elseif(strpos($_SERVER['HTTP_USER_AGENT'], 'Opera') !== FALSE)
   echo "Opera";
 elseif(strpos($_SERVER['HTTP_USER_AGENT'], 'Safari') !== FALSE)
   echo "Safari";
 else
   echo 'Something else';

【讨论】:

不适用于 IE 11(请看这里:nczonline.net/blog/2013/07/02/…) @Farhad 嗨,我正在使用你的这段代码,但我只是好奇 switch 语句是否会更快。就个人而言,感觉就像一个 switch 语句会更合适。但是谢谢,这解决了我的问题 不工作,脚本在浏览器是歌剧的情况下显示返回铬。 查看Edge浏览器可以在if之后添加elseif(strpos($_SERVER['HTTP_USER_AGENT'], 'Edge') !== FALSE) echo 'Microsoft Edge'; 这很好用,我不知道为什么。需要解释一下吗?【参考方案2】:

使用现有方法(即get_browser)可能比自己编写一些东西更好,因为它有(更好的)支持并且会更新为新版本。可能还有可用的库以可靠的方式获取浏览器 ID。

解码$_SERVER['HTTP_USER_AGENT'] 很困难,因为许多浏览器都有非常相似的数据,并且倾向于(误)使用它来谋取利益。但如果你真的想解码它们,你可以使用this page 上的信息来获取所有可用的代理 ID。 此页面还显示您的示例输出确实属于 IE 7。有关代理 id 本身中的字段的更多信息可以在 this page 上找到,但正如我所说的,浏览器已经倾向于使用它来获取自己的利益,它可能是以(稍微)其他格式。

【讨论】:

此功能不适用于所有服务器。尝试了 3 台服务器 - 0/3。 正如 ViliusL 所说,它不会在每台服务器上工作,因为它需要在 php.ini 或 Apache 上的“http.config”文件中设置它的 ini 文件的路径。这意味着您必须有权访问它。 顺便说一句,如果有人尝试过,使用 ini_set('browscap', '/path/to/browscap.ini'); 在脚本级别设置 browscap 指令似乎不起作用。该指令必须在 php 配置文件中设置(如上述注释中所述)。【参考方案3】:

用户代理可以被伪造,最好不要依赖用户代理字符串,如果你只想检测方向,你可以使用 CSS3 媒体查询(你可以探索著名的响应式框架引导程序的 CSS 来检查你是如何可以使用 CSS 处理方向部分)

这是小 CSS :

    @media only screen and (max-width: 999px) 
     /* rules that only apply for canvases narrower than 1000px */
    

    @media only screen and (device-width: 768px) and (orientation: landscape) 
    /* rules for iPad in landscape orientation */
    

    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) 
    /* iPhone, android rules here */
        

阅读更多:About CSS orientation detection

或者您可以使用 javascript 找到方向:

    // Listen for orientation changes
    window.addEventListener("orientationchange", function() 
        // Announce the new orientation number
        alert(window.orientation);
    , false);

阅读更多:About detect orientation using JS

最后,如果你真的想使用用户代理字符串,那么这段代码会对你有很大帮助,几乎在每个浏览器上都能正常工作:

<?php
class BrowserDetection 

    private $_user_agent;
    private $_name;
    private $_version;
    private $_platform;

    private $_basic_browser = array (
       'Trident\/7.0' => 'Internet Explorer 11',
    'Beamrise' => 'Beamrise',
    'Opera' => 'Opera',
    'OPR' => 'Opera',
    'Shiira' => 'Shiira',
    'Chimera' => 'Chimera',
    'Phoenix' => 'Phoenix',
    'Firebird' => 'Firebird',
    'Camino' => 'Camino',
    'Netscape' => 'Netscape',
    'OmniWeb' => 'OmniWeb',
    'Konqueror' => 'Konqueror',
    'icab' => 'iCab',
     'Lynx' => 'Lynx',
    'Links' => 'Links',
    'hotjava' => 'HotJava',
    'amaya' => 'Amaya',
    'IBrowse' => 'IBrowse',
    'iTunes' => 'iTunes',
    'Silk' => 'Silk',
    'Dillo' => 'Dillo', 
    'Maxthon' => 'Maxthon',
    'Arora' => 'Arora',
    'Galeon' => 'Galeon',
    'Iceape' => 'Iceape',
    'Iceweasel' => 'Iceweasel',
    'Midori' => 'Midori',
    'QupZilla' => 'QupZilla',
    'Namoroka' => 'Namoroka',
    'NetSurf' => 'NetSurf',
    'BOLT' => 'BOLT',
    'EudoraWeb' => 'EudoraWeb',
    'shadowfox' => 'ShadowFox',
    'Swiftfox' => 'Swiftfox',
    'Uzbl' => 'Uzbl',
    'UCBrowser' => 'UCBrowser',
    'Kindle' => 'Kindle',
    'wOSBrowser' => 'wOSBrowser',
     'Epiphany' => 'Epiphany', 
    'SeaMonkey' => 'SeaMonkey',
    'Avant Browser' => 'Avant Browser',
    'Firefox' => 'Firefox',
    'Chrome' => 'Google Chrome',
    'MSIE' => 'Internet Explorer',
    'Internet Explorer' => 'Internet Explorer',
     'Safari' => 'Safari',
    'Mozilla' => 'Mozilla'  
    );

     private $_basic_platform = array(
        'windows' => 'Windows', 
     'iPad' => 'iPad', 
      'iPod' => 'iPod', 
    'iPhone' => 'iPhone', 
     'mac' => 'Apple', 
    'android' => 'Android', 
    'linux' => 'Linux',
    'Nokia' => 'Nokia',
     'BlackBerry' => 'BlackBerry',
    'FreeBSD' => 'FreeBSD',
     'OpenBSD' => 'OpenBSD',
    'NetBSD' => 'NetBSD',
     'UNIX' => 'UNIX',
    'DragonFly' => 'DragonFlyBSD',
    'OpenSolaris' => 'OpenSolaris',
    'SunOS' => 'SunOS', 
    'OS\/2' => 'OS/2',
    'BeOS' => 'BeOS',
    'win' => 'Windows',
    'Dillo' => 'Linux',
    'PalmOS' => 'PalmOS',
    'RebelMouse' => 'RebelMouse'   
     ); 

    function __construct($ua = '') 
        if(empty($ua)) 
           $this->_user_agent = (!empty($_SERVER['HTTP_USER_AGENT'])?$_SERVER['HTTP_USER_AGENT']:getenv('HTTP_USER_AGENT'));
        
        else 
           $this->_user_agent = $ua;
        
       

    function detect() 
        $this->detectBrowser();
        $this->detectPlatform();
        return $this;
    

    function detectBrowser() 
     foreach($this->_basic_browser as $pattern => $name) 
        if( preg_match("/".$pattern."/i",$this->_user_agent, $match)) 
            $this->_name = $name;
             // finally get the correct version number
            $known = array('Version', $pattern, 'other');
            $pattern_version = '#(?<browser>' . join('|', $known).')[/ ]+(?<version>[0-9.|a-zA-Z.]*)#';
            if (!preg_match_all($pattern_version, $this->_user_agent, $matches)) 
                // we have no matching number just continue
            
            // see how many we have
            $i = count($matches['browser']);
            if ($i != 1) 
                //we will have two since we are not using 'other' argument yet
                //see if version is before or after the name
                if (strripos($this->_user_agent,"Version") < strripos($this->_user_agent,$pattern))
                    @$this->_version = $matches['version'][0];
                
                else 
                    @$this->_version = $matches['version'][1];
                
            
            else 
                $this->_version = $matches['version'][0];
            
            break;
        
       
   

    function detectPlatform() 
      foreach($this->_basic_platform as $key => $platform) 
            if (stripos($this->_user_agent, $key) !== false) 
                $this->_platform = $platform;
                break;
             
      
    

   function getBrowser() 
      if(!empty($this->_name)) 
           return $this->_name;
      
           

   function getVersion() 
       return $this->_version;
    

    function getPlatform() 
       if(!empty($this->_platform)) 
          return $this->_platform;
       
    

    function getUserAgent() 
        return $this->_user_agent;
     

     function getInfo() 
         return "<strong>Browser Name:</strong> $this->getBrowser()<br/>\n" .
        "<strong>Browser Version:</strong> $this->getVersion()<br/>\n" .
        "<strong>Browser User Agent String:</strong> $this->getUserAgent()<br/>\n" .
        "<strong>Platform:</strong> $this->getPlatform()<br/>";
     
  

$obj = new BrowserDetection();

echo $obj->detect()->getInfo();

以上代码几乎适用于所有浏览器,希望对您有所帮助。

【讨论】:

哦,男孩,但你甚至不知道他想用这些信息做什么,然后去建议媒体查询...... 一个小细节,在 Edge 中它检测为 Chrome,要修复它只需在 Chrome 之前的 _basic_browser 数组中添加 'Edg' => 'Microsoft Edge',【参考方案4】:
class Browser  
    /** 
    Figure out what browser is used, its version and the platform it is 
    running on. 

    The following code was ported in part from JQuery v1.3.1 
    */ 
    public static function detect()  
        $userAgent = strtolower($_SERVER['HTTP_USER_AGENT']); 

        // Identify the browser. Check Opera and Safari first in case of spoof. Let Google Chrome be identified as Safari. 
        if (preg_match('/opera/', $userAgent))  
            $name = 'opera'; 
         
        elseif (preg_match('/webkit/', $userAgent))  
            $name = 'safari'; 
         
        elseif (preg_match('/msie/', $userAgent))  
            $name = 'msie'; 
         
        elseif (preg_match('/mozilla/', $userAgent) && !preg_match('/compatible/', $userAgent))  
            $name = 'mozilla'; 
         
        else  
            $name = 'unrecognized'; 
         

        // What version? 
        if (preg_match('/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/', $userAgent, $matches))  
            $version = $matches[1]; 
         
        else  
            $version = 'unknown'; 
         

        // Running on what platform? 
        if (preg_match('/linux/', $userAgent))  
            $platform = 'linux'; 
         
        elseif (preg_match('/macintosh|mac os x/', $userAgent))  
            $platform = 'mac'; 
         
        elseif (preg_match('/windows|win32/', $userAgent))  
            $platform = 'windows'; 
         
        else  
            $platform = 'unrecognized'; 
         

        return array( 
            'name'      => $name, 
            'version'   => $version, 
            'platform'  => $platform, 
            'userAgent' => $userAgent 
        ); 
     
 


$browser = Browser::detect(); 

【讨论】:

你为什么要创建一个只有一个方法的类?为什么不使用普通函数呢? 那是您的选择,随心所欲。我将举例说明如何检测浏览器。我已经从我的一个工作项目中提取了。对于所有开发人员来说,使用对象也更可取。 这对我有用,可以解决 safari/chrome 问题: if ( stripos($userAgent, 'Firefox') !== false ) $name = 'firefox'; elseif ( stripos($userAgent, 'MSIE') !== false ) $name = 'ie'; elseif ( stripos($userAgent, 'Trident') !== false ) $name = 'ie'; elseif ( stripos($userAgent, 'Chrome') !== false ) $name = 'chrome'; elseif ( stripos($userAgent, 'Safari') !== false ) $name = 'safari'; 【参考方案5】:

如果 stripos($_SERVER['HTTP_USER_AGENT'],"mozilla")!==false)

这不是一个有用的测试,几乎每个浏览器都将自己标识为 Mozilla。

$_SERVER['HTTP_USER_AGENT'] 是否可靠?

没有。

我应该选择 get_browser 函数吗?

没有。

服务器端的浏览器嗅探是一场失败的游戏。除了尝试解析 UA 字符串的所有问题、存在的浏览器、晦涩的浏览器以及标题根本不存在的可能性之外,如果您为不同的浏览器返回不同的页面内容,则必须设置 @987654321 @ header 包含User-Agent,否则缓存代理可能会将错误版本的页面返回到错误的浏览器。

但是如果你添加Vary: User-Agent IE 的损坏缓存代码会变得混乱并且每次都重新加载页面。所以你赢不了。

如果您必须进行浏览器嗅探,则可以在客户端使用 JavaScript,特别是在 IE 的情况下,使用条件 cmets。幸运的是,它是支持条件 cmets 的 IE,因为这是您经常需要解决方法的一个浏览器。 (有关最常见的策略,请参阅 scunliffe 的回答。)

【讨论】:

【参考方案6】:

旧帖子仍然出现在 Google 中。 get_browser() 是最好的解决方案,但编辑 php.ini 可能是不可能的。根据this post,您不能 ini_set browscap 属性。那么还剩下什么? phpbrowscap 似乎完成了工作。文档不是很好,所以如果您不希望它自动更新(默认为开启),那么您需要设置

$bc->updateMethod = phpbrowscap\Browscap::UPDATE_LOCAL;
$bc->localFile = __DIR__ . "/php_browscap.ini";

【讨论】:

【参考方案7】:

我注意到,真正的浏览器名称总是出现在最后一个 (parentheses) 之后,除了 IE,在最后一个 (parentheses) 之后没有浏览器名称。我想知道是否只有在最后一个 ) 之后阅读才能提高准确性。

您可能会在不同的用户代理中注意到这一点:

Google Chrome

Safari

Firefox

Edge

IE(括号后没有定义浏览器的例外)

示例:

$userBrowser = (!empty($_SERVER['HTTP_USER_AGENT'])?$_SERVER['HTTP_USER_AGENT']:getenv('HTTP_USER_AGENT'));
$userBrowser = explode(')', $userBrowser);
$userBrowser = $userBrowser[count($userBrowser)-1];

echo $userBrowser; //this has many inaccurate browsers stripped out

一个完整的功能:

function getUserBrowser()
  $fullUserBrowser = (!empty($_SERVER['HTTP_USER_AGENT'])? 
  $_SERVER['HTTP_USER_AGENT']:getenv('HTTP_USER_AGENT'));
  $userBrowser = explode(')', $fullUserBrowser);
  $userBrowser = $userBrowser[count($userBrowser)-1];

  if((!$userBrowser || $userBrowser === '' || $userBrowser === ' ' || strpos($userBrowser, 'like Gecko') === 1) && strpos($fullUserBrowser, 'Windows') !== false)
    return 'Internet-Explorer';
  else if((strpos($userBrowser, 'Edge/') !== false || strpos($userBrowser, 'Edg/') !== false) && strpos($fullUserBrowser, 'Windows') !== false)
    return 'Microsoft-Edge';
  else if(strpos($userBrowser, 'Chrome/') === 1 || strpos($userBrowser, 'Crios/') === 1)
    return 'Google-Chrome';
  else if(strpos($userBrowser, 'Firefox/') !== false || strpos($userBrowser, 'FxiOS/') !== false)
    return 'Mozilla-Firefox';
  else if(strpos($userBrowser, 'Safari/') !== false && strpos($fullUserBrowser, 'Mac') !== false)
    return 'Safari';
  else if(strpos($userBrowser, 'OPR/') !== false && strpos($fullUserBrowser, 'Opera Mini') !== false)
    return 'Opera-Mini';
  else if(strpos($userBrowser, 'OPR/') !== false)
    return 'Opera';
  
  return false;


echo 'browser detect: '.getUserBrowser();

我还在 chrome、edge 和 firefox 开发人员上对此进行了测试,并且运行正常。 (虽然我还没有测试过这些浏览器的旧版本)

【讨论】:

它在我的桌面 Chrome->检查模式和我的移动 Safari 上都显示“Safari”【参考方案8】:

我发现的大多数 PHP 包似乎都不错,但我找不到一个能满足我所有需要的好包,所以我构建了一个 Laravel 助手来组合其中的 3 个。

这里是包:

詹塞格斯/代理

哪个浏览器/解析器

cbschuld/browser.php

这是我的功能:

function browser($userAgent)

    $agent = new \Jenssegers\Agent\Agent();
    $agent->setUserAgent($userAgent);

    $result = new \WhichBrowser\Parser($userAgent);

    $browser = new \Browser($userAgent);

    return new class($agent, $result, $browser)
    
        public function __construct($agent, $result, $browser)
        
            $this->agent = $agent;
            $this->result = $result;
            $this->browser = $browser;
        
        public function device()
        
            return $this->agent->device() ?: $this->result->device->toString() ?: $this->browser->getPlatform();
        
        public function browser()
        
            return $this->agent->browser() ?: $this->result->browser->name ?: $this->browser->getBrowser();
        
        public function platform()
        
            return $this->agent->platform() ?: $this->result->os->name ?: $this->browser->getPlatform();
        
        public function isMobile()
        
            return $this->agent->isPhone() ?: $this->result->isType('mobile') ?: $this->browser->isMobile();
        
        public function isTablet()
        
            return $this->result->isType('tablet') ?: $this->browser->isTablet();
        
        public function isDesktop()
        
            return $this->agent->isDesktop() ?: $this->result->isType('desktop') ?: (! $this->browser->isMobile() && ! $this->browser->isTablet());
        
        public function isRobot()
        
            return $this->agent->isRobot() ?: $this->browser->isRobot();
        
    ;

使用方法如下:

$browser = browser($userAgent);

$browser->device();
$browser->platform();
$browser->browser();
$browser->isMobile();
$browser->isTablet();
$browser->isDesktop();
$browser->isRobot();

【讨论】:

【参考方案9】:

我认为依赖 userAgent 有点弱,因为它可以(并且经常)伪造。

如果您只想为 IE 提供 CSS,请使用条件注释。

<link type="text/css" rel="stylesheet" href="styles.css"/><!--for all-->
<!--[if IE]>
  <link type="text/css" rel="stylesheet" href="ie_styles.css"/>
<![endif]-->

或者如果您只想要一个用于 IE6:

<!--[if IE 6]>
  <link type="text/css" rel="stylesheet" href="ie6_styles.css"/>
<![endif]-->

因为它是一条评论,它被浏览器忽略...除了 IE,如果 if 测试与当前浏览器匹配,则加载它。

【讨论】:

如果是伪造的,谁在乎?这不像你依赖它的安全性,它只是向用户展示一些东西......【参考方案10】:
Check This Code :      
   <?php     

class OS_BR    
private $agent = "";
private $info = array();

function __construct()
    $this->agent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : NULL;
    $this->getBrowser();
    $this->getOS();
     
function getBrowser()     
    $browser = array("Navigator"            => "/Navigator(.*)/i",
                     "Firefox"              => "/Firefox(.*)/i",
                     "Internet Explorer"    => "/MSIE(.*)/i",
                     "Google Chrome"        => "/chrome(.*)/i",
                     "MAXTHON"              => "/MAXTHON(.*)/i",
                     "Opera"                => "/Opera(.*)/i",
                     );
    foreach($browser as $key => $value)
        if(preg_match($value, $this->agent))
            $this->info = array_merge($this->info,array("Browser" => $key));
            $this->info = array_merge($this->info,array(
              "Version" => $this->getVersion($key, $value, $this->agent)));
            break;
        else
            $this->info = array_merge($this->info,array("Browser" => "UnKnown"));
            $this->info = array_merge($this->info,array("Version" => "UnKnown"));
        
    
    return $this->info['Browser'];

function getOS()
    $OS = array("Windows"   =>   "/Windows/i",
                "Linux"     =>   "/Linux/i",
                "Unix"      =>   "/Unix/i",
                "Mac"       =>   "/Mac/i"
                );

    foreach($OS as $key => $value)
        if(preg_match($value, $this->agent))
            $this->info = array_merge($this->info,array("Operating System" => $key));
            break;
        
    
    return $this->info['Operating System'];


function getVersion($browser, $search, $string)
    $browser = $this->info['Browser'];
    $version = "";
    $browser = strtolower($browser);
    preg_match_all($search,$string,$match);
    switch($browser)
        case "firefox": $version = str_replace("/","",$match[1][0]);
        break;

        case "internet explorer": $version = substr($match[1][0],0,4);
        break;

        case "opera": $version = str_replace("/","",substr($match[1][0],0,5));
        break;

        case "navigator": $version = substr($match[1][0],1,7);
        break;

        case "maxthon": $version = str_replace(")","",$match[1][0]);
        break;

        case "google chrome": $version = substr($match[1][0],1,10);
    
    return $version;


function showInfo($switch)
    $switch = strtolower($switch);
    switch($switch)
        case "browser": return $this->info['Browser'];
        break;

        case "os": return $this->info['Operating System'];
        break;

        case "version": return $this->info['Version'];
        break;

        case "all" : return array($this->info["Version"], 
          $this->info['Operating System'], $this->info['Browser']);
        break;

        default: return "Unkonw";
        break;

    

     


$obj = new OS_BR();

echo $obj->showInfo('browser');

echo $obj->showInfo('version');

echo $obj->showInfo('os');

echo "<pre>".print_r($obj->showInfo("all"),true)."</pre>"; 

 ?>

【讨论】:

【参考方案11】:

@Ekramul Hoque 走在正确的轨道上,但他的回答有几个缺陷。

首先,我将从 Edge 开始,因为 Internet Explorer 在其任何 UA 中都不包含术语 Edge

if(strpos($_SERVER['HTTP_USER_AGENT'], 'Edge') !== FALSE) 
  echo '<link type="text/css" href="ms.css" />';

然后,继续向后工作,因为早期版本的 IE 不使用 Trident 引擎,因此不会将其包含在其 UA 中。

 elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Trident') !== FALSE) 
  echo '<link type="text/css" href="ms.css" />';
 elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== FALSE) 
  echo '<link type="text/css" href="ms.css" />';

接下来我们需要针对 iOS 浏览器,以便后续查询不会干扰这个。所有 iOS 浏览器都使用 webkit,但 Opera Mini 除外,它从远程服务器而不是设备进行渲染。这意味着我们可以使用iOS 定位UA 中的操作系统,并排除包含Opera 的UA。

 elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'iOS') && !strpos($_SERVER['HTTP_USER_AGENT'], 'Opera') !== FALSE 
  echo '<link type="text/css" href="webkit.css" />';

接下来,转到 Firefox 浏览器。虽然使用 Firefox 作为搜索词会起作用,但它只会识别 Firefox 浏览器,而不是基于 Firefox 的浏览器。 Firefox 在其 UA 中包含 Gecko,因为 Gecko 是它使用的引擎,因此我们可以定位它。通过使用Gecko,我们可以识别所有运行在Gecko 引擎(即SeaMonkey)上的浏览器。但是,许多浏览器出于兼容性原因使用术语like Gecko,因此我们必须确保匹配Gecko 而不是like Gecko

 elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Gecko') && !strpos($_SERVER['HTTP_USER_AGENT'], 'like Gecko') !== FALSE) 
  echo '<link type="text/css" href="moz.css" />';

接下来我们将识别 Opera 浏览器。 Opera 使用 Presto 引擎到 v12 结束。从 v15 开始,他们开始使用 Chrome 等 Blink 引擎。 v12 及更早版本在 UA 中包含 v15+ 所没有的两个唯一词——OperaPresto。您可以针对他们中的任何一个,因为他们总是一起出现。对于 v15,Opera 开始在 UA 中使用OPR

 elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Presto') !== FALSE) 
  echo '<link type="text/css" href="o.css" />';
 elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'OPR') !== FALSE) 
  echo '<link type="text/css" href="normal.css" />';

接下来是 Safari。 Safari 使用 AppleWebKit 作为其渲染引擎,但我们不能只针对它,因为出于兼容性原因,Chrome 在其 UA 中还包含 AppleWebKitSafari。因此,我们需要搜索AppleWebKit,而不是Chrome

 elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'AppleWebKit') && !strpos($_SERVER['HTTP_USER_AGENT'], 'Chrome') !== FALSE) 
  echo '<link type="text/css" href="webkit.css" />';

最后,我们来到 Chrome。 Chrome 使用 AppleWebKit 直到 v27。随着 v28 版本的发布,他们切换到了 Blink 引擎。我们可以同时针对这两个引擎,但这需要大量代码。由于 Chrome 现在快到了 v70,我们将只搜索 Chrome,因为几乎不可能有人仍在运行 Chrome 的 webkit 版本。

 elseif (strpos($_SERVER['HTTP_USER_AGENT'], 'Chrome') !== FALSE 
  echo '<link type="text/css" href="normal.css" />';

最后但并非最不重要的是,你的后备/其他。

 else 
  echo '<link type="text/css" href="normal.css" />';

现在,我使用引用供应商前缀的 css 文件来定位这里。根据需要随意调整它,让它做你需要做的事情。我希望这会有所帮助。

【讨论】:

以上是关于使用 php 进行可靠的用户浏览器检测的主要内容,如果未能解决你的问题,请参考以下文章

使用 javascript 进行可靠的浏览器检测?

如何使用 PHP 检测“Google Chrome”作为用户代理?

在没有用户代理嗅探的情况下检测移动浏览器[关闭]

在没有用户代理嗅探的情况下检测移动浏览器[关闭]

如何从 php 中的用户代理字符串中检测浏览器欺骗和机器人

在 IE 中为 SaveAs 对话框进行特征/对象检测的可靠 Javascript 方法