Skip to content

Instantly share code, notes, and snippets.

@kythin
Created March 26, 2014 01:15
Show Gist options
  • Save kythin/9775086 to your computer and use it in GitHub Desktop.
Save kythin/9775086 to your computer and use it in GitHub Desktop.
Check if Mobile Device PHP Function
function isMobileDevice() {
$user_agent = strtolower ( $_SERVER['HTTP_USER_AGENT'] );
if ( preg_match ( "/phone|iphone|itouch|ipod|symbian|android|htc_|htc-|palmos|blackberry|opera mini|iemobile|windows ce|nokia|fennec|hiptop|kindle|mot |mot-|webos\/|samsung|sonyericsson|^sie-|nintendo/", $user_agent ) ) {
// these are the most common
return true;
} else if ( preg_match ( "/mobile|pda;|avantgo|eudoraweb|minimo|netfront|brew|teleca|lg;|lge |wap;| wap /", $user_agent ) ) {
// these are less common, and might not be worth checking
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment