Skip to content

Instantly share code, notes, and snippets.

@saiik
Last active September 7, 2016 07:26
Show Gist options
  • Select an option

  • Save saiik/1abb7c2e66ad8fefcd6c3508c7e40c26 to your computer and use it in GitHub Desktop.

Select an option

Save saiik/1abb7c2e66ad8fefcd6c3508c7e40c26 to your computer and use it in GitHub Desktop.
Check if user is using internet explorer
<?php
preg_match('/MSIE (.*?);/', $_SERVER['HTTP_USER_AGENT'], $matches);
if(count($matches) < 2) {
preg_match('/Trident\/\d{1,2}.\d{1,2}; rv:([0-9]*)/', $_SERVER['HTTP_USER_AGENT'], $matches);
}
if(count($matches) > 1) {
$usingIE = true;
} else {
$usingIE = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment