Skip to content

Instantly share code, notes, and snippets.

@stefano-bortolotti
Created November 7, 2013 16:30
Show Gist options
  • Save stefano-bortolotti/7357479 to your computer and use it in GitHub Desktop.
Save stefano-bortolotti/7357479 to your computer and use it in GitHub Desktop.
Get the User Agent [PHP]
function getUA() {
static $browser; //No accident can arise from depending on an unset variable.
if ( !isset($browser) ) {
$browser = get_browser($_SERVER['HTTP_USER_AGENT']);
}
return $browser;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment