Last active
February 23, 2016 19:37
-
-
Save alandbh/4a95c9f9c9df428df2b0 to your computer and use it in GitHub Desktop.
Checa se o dispositivo é móvelChecks if it's a mobile device
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
/* 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