How to detect a mobile device in php

How to detect a mobile device in php?? is you ever got this problem during the development to know your device can be detect by user agent.

You have to match keywords to the user agent and get a Boolean true or false for your result.

Below is an best suitable code for detecting mobile devices. You can alter it as desired to match your suitable devices.

$isMobile = (bool)preg_match(‘#\b(ip(hone|od)|android\b.+\bmobile|opera m(ob|in)i|windows (phone|ce)|blackberry’.
‘|s(ymbian|eries60|amsung)|p(alm|rofile/midp|laystation portable)|nokia|fennec|htc[\-_]’.
‘|up\.browser|[1-4][0-9]{2}x[1-4][0-9]{2})\b#i’, $_SERVER[‘HTTP_USER_AGENT’] );

 

If you want to detect tablets as well here is the modified one

$isMobile = (bool)preg_match(‘#\b(ip(hone|od|ad)|android|opera m(ob|in)i|windows (phone|ce)|blackberry|tablet’.
‘|s(ymbian|eries60|amsung)|p(laybook|alm|rofile/midp|laystation portable)|nokia|fennec|htc[\-_]’.
‘|mobile|up\.browser|[1-4][0-9]{2}x[1-4][0-9]{2})\b#i’, $_SERVER[‘HTTP_USER_AGENT’] );

Few other codes for iOs

$iPod = stripos($_SERVER[‘HTTP_USER_AGENT’],”iPod”);
$iPhone = stripos($_SERVER[‘HTTP_USER_AGENT’],”iPhone”);
$iPad = stripos($_SERVER[‘HTTP_USER_AGENT’],”iPad”);
$Android = stripos($_SERVER[‘HTTP_USER_AGENT’],”Android”);
$webOS = stripos($_SERVER[‘HTTP_USER_AGENT’],”webOS”);

 

 

 

Leave a Comment