Skip to content

Instantly share code, notes, and snippets.

@alandbh
Last active February 23, 2016 19:37
Show Gist options
  • Save alandbh/4a95c9f9c9df428df2b0 to your computer and use it in GitHub Desktop.
Save alandbh/4a95c9f9c9df428df2b0 to your computer and use it in GitHub Desktop.
Checa se o dispositivo é móvelChecks if it's a mobile device
/* DETECTA SE É DISPOSITIVO MÓVEL
================================================== */
function isMobile() {
return preg_match("/(android|avantgo|blackberry|bolt|boost|cricket|docomo|fone|hiptop|mini|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i", $_SERVER["HTTP_USER_AGENT"]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment