Guest User

Untitled

a guest
Jan 6th, 2012
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. function detect_browser()
  2. {
  3.     $list = array(
  4.         "Mozilla Firefox"   => "firefox",
  5.         "Internet Explorer" => "msie",
  6.         "Opera"         => "opera",
  7.         "Google Chrome"     => "chrome"
  8.     );
  9.    
  10.     foreach($list as $name => $match)
  11.     {
  12.         if(preg_match("/".$match."/is",$_SERVER['HTTP_USER_AGENT']))
  13.             break;
  14.     }
  15.        
  16.     return $name;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment