vote up 1 vote down star

My code at: http://www.mgxvideo.com/mgxcopy-dev/get_browser.php, returns Opera when I run IE8. My source is:

<?php
$browser = get_browser(null, true);
echo $browser['browser'];
?>
flag

74% accept rate
3  
When I browse to that address using Firefox or IE8, I get 'Default Browser'. – Sinan Ünür Jun 17 at 22:21
I get IE (running IE8) – Jason Watts Jun 17 at 22:22

2 Answers

vote up 2 vote down check

It doesn't. The get_browser() function is making educated (but ill-informed) guesses about which browser the user-agent is running. Your browser capabilities file is likely outdated, probably because it was made before IE8 was released. Update it here.

The real IE8 user-agent string looks something like this:

Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0)
link|flag
vote up 0 vote down

You should use a lower-level tool, like a packet trace or server logging or a header dump to see what is being sent.

link|flag

Your Answer

Get an OpenID
or

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