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
/* ... */
)