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.
|
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:
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? |
|||
|
|
check the docs, always |
|||||||||||||||||
|
Prints:
|
|||
|
|
|
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 |
|||
|
|
|
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 |
|||
|
|
|
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. |
||||
|
|