Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I get the browser name using PHP? I thought this would be straightforward? All I need to do is differentiate between IE and Firefox.

share|improve this question
Though it's entirely possible to get a value (as described in the answers below) for the browser, you should be aware that the value is not necessarily accurate. – dnagirl Feb 4 '10 at 13:18

7 Answers

up vote 13 down vote accepted
if (strpos($_SERVER['HTTP_USER_AGENT'], '(compatible; MSIE ')!==FALSE) {
    ...ie specific...
}

But! Don't!

There is rarely a good reason to be sniffing user-agent at the server side. It brings a bunch of problems, including:

  • browsers and other user-agents that lie about who they are, or strip the user-agent header completely, or generally make it hard to distinguish what the real browser is from the header text. For example the above rule will also detect Opera when it's spoofing IE, and IEMobile (Windows Mobile), which you may or may not want as it is a very different browser to desktop IE.

  • if you discriminate on the user-agent at the server-side, you must return a Vary: User-Agent header in the response, otherwise proxies may cache a version of the page and return it to other browsers that don't match. However, including this header has the side-effect of messing up caching in IE.

Depending on what it is you are trying to achieve, there is almost always a much better way of handling the differences between IE and other browsers at the client side, using CSS hacks, JScript or conditional comments. What is the real purpose for trying to detect IE in your case?

share|improve this answer
Exactly. If you cURL with; CURLOPT_USERAGENT('Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/536.26.17 (KHTML, like Gecko) Version/6.0.2 Safari/536.26.17'); and poof it's spoofed :) – Allendar Mar 26 at 12:48

$_SERVER['HTTP_USER_AGENT']

share|improve this answer

check the docs, always

share|improve this answer
I had been working in PHP for years but I did not know that. (I don't really needed it either.) – Notinlist Feb 4 '10 at 13:05
2  
@ghost - This would be a great answer if it weren't just RTFM with a link. – antik Feb 4 '10 at 13:17
1  
You should mention get_browser() function, not just a link to it. – Notinlist Feb 4 '10 at 13:17
2  
@ghostdog "In order for this to work, your browscap configuration setting in php.ini must point to the correct location of the browscap.ini file on your system. browscap.ini is not bundled with PHP" – soupagain Feb 4 '10 at 13:18
"RTFM" is always an appropriate comment. ;^) "Google it", "Check Stack", etc... are not. – marklark Apr 4 '12 at 15:53
<?php
echo $_SERVER['HTTP_USER_AGENT'] . "\n\n";

$browser = get_browser(null, true);
print_r($browser);
?>

Prints:

Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040803 Firefox/0.9.3

Array
(
    [browser_name_regex] => ^mozilla/5\.0 (windows; .; windows nt 5\.1; .*rv:.*) gecko/.* firefox/0\.9.*$
    [browser_name_pattern] => Mozilla/5.0 (Windows; ?; Windows NT 5.1; *rv:*) Gecko/* Firefox/0.9*
    [parent] => Firefox 0.9
    [platform] => WinXP
    [browser] => Firefox
    [version] => 0.9
    [majorver] => 0
    [minorver] => 9
    [cssversion] => 2
    [frames] => 1
    [iframes] => 1
    [tables] => 1
    [cookies] => 1
    [backgroundsounds] =>
    [vbscript] =>
    [javascript] => 1
    [javaapplets] => 1
    [activexcontrols] =>
    [cdf] =>
    [aol] =>
    [beta] => 1
    [win16] =>
    [crawler] =>
    [stripper] =>
    [wap] =>
    [netclr] =>
)
share|improve this answer

Here is a solution which is improved form of PHP.NET 's function getBrowser() which identifies the Browser Name and Browser Version Correctly.

http://www.kingofdevelopers.com/php-classes/get-browser-name-version.php

share|improve this answer

browscap seems to be more promising instead of user agent. i have been through a class that solves lot of common problems like fetching ip_address, browser, os , bot vs human visit, css version on this site. i have been using it for couple of weeks now... results are promising.

Demo :- http://thetutlage.com/demo/tut_analytics/

Article :- http://www.thetutlage.com/post=TUT198

share|improve this answer

You can search for detect browser php code if you want to get all of the browser names. Try this one.

There you will get a code, which can identify Chrome, Firefox, Safary, Internet Explorer and other browsers.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.