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

i using browser.php for detect OS name that users use it. but my question is that how we can get OS version of users use. this script did not provide any method or property for that . for example i want to show windows version that users use it include seven,XP and so on.

what is solution? please Help me if can

share|improve this question
1  
Why don't you ask that script author? – zerkms Jun 5 '12 at 5:34
1  
You are also aware that any user can send a fake browser agent to the server, so browser detection in general is not reliable? – Steve Jun 5 '12 at 5:36
i need to a quick answer. ask script author can Take a long time – ahmad Jun 5 '12 at 5:37
Yes I know steve. but i don not use it for important thing. i just get the user agent string and save it to DB and then show complete details when he/she login to site. just it. – ahmad Jun 5 '12 at 5:39
Simple answer is, with current version, you can't – Rab Nawaz Jun 5 '12 at 5:42

2 Answers

up vote 1 down vote accepted

Use the Browsercap class instead, since it appears (from the comments above) that the tool you're currently using doesn't support this feature. The Browsercap class is an off-shoot of PHP's native get_browser() method, though the class doesn't require the types of ini-configurations that the native function does. The class is also a fully standalone solution.

Setup is easy:

// Loads the class
require 'path/to/Browscap.php';

// The Browscap class is in the phpbrowscap namespace, so import it
use phpbrowscap\Browscap;

// Create a new Browscap object (loads or creates the cache)
$bc = new Browscap('path/to/the/cache/dir');

// Get information about the current browser's user agent
$current_browser = $bc->getBrowser();

// Output the result
print_r($current_browser);

The output will be your resulting object, full of relevant data (including the Platform/OS):

stdClass Object
(
    /* ... */
    [Parent] => Safari 3.1
    [Platform] => MacOSX
    [Browser] => Safari
    [Version] => 3.1
    /* ... */
)
share|improve this answer

Here is a better solution which gives the information of visitor OS using User Agent string and it show what OS version is visitor using like (win95, winMe, Window Vista, Win 7) etc

It also tells that if a user is using a Mobile Device (iPhone, iPad, iPod, Blackbery, Android ) not only that it also tells you the visitor is (Spider/Robot).

Get OS Name and Version

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.