How can we get all the properties of browser in PHP

We can get the browser properties in PHP by :

echo $_SERVER[‘HTTP_USER_AGENT’] . “\n\n”;
OR
$browser = get_browser(null, true);
print_r($browser);