Skip to content

Instantly share code, notes, and snippets.

@w-jerome
Created June 7, 2018 08:54
Show Gist options
  • Save w-jerome/993c97e1714e302af710156b5223f9ea to your computer and use it in GitHub Desktop.
Save w-jerome/993c97e1714e302af710156b5223f9ea to your computer and use it in GitHub Desktop.
PHP — Detect is mobile
$is_mobile = false;
if (preg_match('/(android|webos|avantgo|iphone|ipad|ipod|blackberry|iemobile|bolt|boost|cricket|docomo|fone|hiptop|mini|opera mini|kitkat|mobi|palm|phone|pie|tablet|up\.browser|up\.link|webos|wos)/i', $_SERVER['HTTP_USER_AGENT'])) {
$is_mobile = true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment