PHP 检测iphone浏览器

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 检测iphone浏览器相关的知识,希望对你有一定的参考价值。

<?

function is_iPhone($agent='') {
    if(empty($agent)) $agent = $_SERVER['HTTP_USER_AGENT'];
    if(!empty($agent) and preg_match("~Mozilla/[^ ]+ \((iPhone|iPod); U; CPU [^;]+ Mac OS X; [^)]+\) AppleWebKit/[^ ]+ \(KHTML, like Gecko\) Version/[^ ]+ Mobile/[^ ]+ Safari/[^ ]+~",$agent,$match)) {
        return "YES";
    } elseif(stristr($agent,'iphone') or stristr($agent,'ipod')){
        return "MAYBE";
    } else {
        return "NO";
    }
}

echo is_iPhone();
?>

以上是关于PHP 检测iphone浏览器的主要内容,如果未能解决你的问题,请参考以下文章

PHP iPhone检测(PHP)

iPhone检测(PHP)

PHP 检测iPhone功能

PHP iPhone和iPod检测

请问电脑PC自带IE浏览器和 苹果IPHONE或者安卓手机打开同一域名网站时,分别显示不同内容,代码如何修改,

检测iphone浏览器