Last active
September 7, 2016 07:26
-
-
Save saiik/1abb7c2e66ad8fefcd6c3508c7e40c26 to your computer and use it in GitHub Desktop.
Check if user is using internet explorer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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