up vote 4 down vote favorite
share [g+] share [fb]

I run across this constantly, render some HTML if the browser is IE and some other if FFX (or mac, opera, etc).

This is what I use (pardon the missing underscores)

if(ereg("msie", strtolower($SERVER['HTTPUSERAGENT']))) { }

Anyone know a shorter way? (I use PHP but, just for the heck of it, i'd love to see non-PHP code as well who knows maybe there's some lisp "browser ie" syntax)

/mp

link|improve this question

feedback

13 Answers

up vote 5 down vote accepted

Prototype, the javascript library, does it like so:

var IE = !!(window.attachEvent && !window.opera);

If you need this in PHP, then I'm little help.

link|improve this answer
feedback

browser detection is bad you should probably find another way to do whatever it is you're trying to do

link|improve this answer
sometimes it is required. IE supports the .setAttribute() method in IE6 & IE7, but it doesn't support it correctly. ditto for .innerHTML, ditto for .createElement(), etc. – scunliffe Oct 26 '08 at 2:49
In those cases, you can still user feature detection over browser detection. – EndangeredMassa Aug 24 '10 at 3:45
feedback

From the horse's mouth (it shouldn't be too hard to translate this to PHP):

http://msdn.microsoft.com/en-us/library/ms537509.aspx

link|improve this answer
feedback

@Sean and @Stu,

Those .NET examples are not going to be of much use to non-.NET developers since they are using methods from ASP.NET. Underneath, the methods are inspecting the httpuseragent HTTP header which is the way to do browser sniffing on the server.

Browser sniffing on the server usually isn't the best solution. Ideally, you would send the same HTML to IE, FireFox, Safari, Opera, etc., and rely on CSS and conditional comments to render it appropriately. Use a JavaScript library like jQuery, YUI, Prototype, etc. to make your js cross-browser.

Where server browser sniffing can work well, is in showing totally different markup for iPhones and other mobile devices.

link|improve this answer
feedback

You should be more specific about the situation you're using this for; it sounds to me like this isn't the optimal way of doing whatever it is you're doing.

link|improve this answer
feedback

for a pure javascript approach.

window.external;//is an object in IE
link|improve this answer
feedback

In .NET, you could do something like:

IF Request.Browser.IsBrowser("IE") THEN ...

link|improve this answer
feedback

@Lance: True, but the asker said that non-PHP methods were fine. I provided a Javascript answer and a .NET answer.

link|improve this answer
feedback

Using jQuery,

I just use jQuery.browser.msie which is a boolean.

T.

link|improve this answer
1  
I think this has been depreciated in 1.3 – alex Feb 12 '09 at 6:27
feedback

pure Javascript. 11 characters.

m//@cc_on=1

alert(m ? "Internet explorer" : "Not internet explorer");
link|improve this answer
You should use var m instead of m, because if that variable doesn't exist, it will throw a ReferenceError. – Nyuszika7H Jan 24 '11 at 9:29
feedback

another way is:

!!document.all
link|improve this answer
feedback

I realize your post is about server-side detection, but this is too cool not to share.

Gareth Heyes wrote a blog post with a bunch of cool hacky ways to detect the browser in as little bytes as possible. His method for detecting IE is:

IE='\v'=='v'

This works on all versions of IE including 8. As it turns out, this is not the shortest way to tell. You can shorten it to:

IE=!+"\v1"

Code golfing at its best.

link|improve this answer
feedback
var ie/*@cc_on=true*/;
alert( (ie) ? '' : 'not' + 'IE' );

Anyway, you should use feature detection instead of browser detection.
And all Code-Golfs should be community wiki.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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