Skip to content

Instantly share code, notes, and snippets.

@DevelopKim
Last active December 22, 2015 10:38
Show Gist options
  • Save DevelopKim/6460114 to your computer and use it in GitHub Desktop.
Save DevelopKim/6460114 to your computer and use it in GitHub Desktop.
function detect_ie()
{
if (isset($_SERVER['HTTP_USER_AGENT']) &&
(strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false))
return true;
else
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment