Skip to content

Instantly share code, notes, and snippets.

@GaretJax
Created July 6, 2010 12:57
Show Gist options
  • Save GaretJax/465350 to your computer and use it in GitHub Desktop.
Save GaretJax/465350 to your computer and use it in GitHub Desktop.
<?php
// Loads the class
require 'path/to/Browscap.php';
// Creates a new Browscap object (loads or creates the cache)
$bc = new Browscap('path/to/the/cache/dir');
// Gets information about the current browser's user agent
$current_browser = $bc->getBrowser();
// Output the result
echo '<pre>'; // some formatting issues ;)
print_r($current_browser);
echo '</pre>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment