Answers for "php check if is phone"

PHP
5

check if user is on mobile php

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"]);
}
Posted by: Guest on November-05-2020

Code answers related to "php check if is phone"

Browse Popular Code Answers by Language