Skip to content

Instantly share code, notes, and snippets.

@jehoshua02
jehoshua02 / BrowserInformation
Created October 16, 2011 05:18
Rework of BrowserInformation class using class variables correctly
class BrowserInformation
{
private $agent;
private $browser;
public function __construct($agent = NULL)
{
if (empty($agent))
{
$agent = $_SERVER['HTTP_USER_AGENT'];