Skip to content

Instantly share code, notes, and snippets.

@brs14ku
Created May 16, 2016 21:26
Show Gist options
  • Save brs14ku/b5ba23761d9ac12791d7c4810c505d97 to your computer and use it in GitHub Desktop.
Save brs14ku/b5ba23761d9ac12791d7c4810c505d97 to your computer and use it in GitHub Desktop.
mobile detect batcache variant
function mysite_is_mobile()
{
$isMobile = preg_match("#(ipod|iphone|android|opera mini|blackberry|pre/|palm os|palm|hiptop|avantgo|plucker|xiino|blazer|elaine|iris|3g_t|windows ce|opera mobi|windows ce; smartphone;|windows ce; iemobile)#i", $_SERVER['HTTP_USER_AGENT'] );
return $isMobile == 1 ? true : false;
}
$batcache->unique['mobile'] = mysite_is_mobile();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment