php – 检测iPhone浏览器

前端之家收集整理的这篇文章主要介绍了php – 检测iPhone浏览器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有脚本检测,如果访问者使用 iphone(无论是浏览器,可能iphone Safari,iPhone for Opera等)?

然后关闭我的一些JavaScript.

谢谢…

在网上搜索有两种实现此目的的常用方法.
我最喜欢的是在PHP中它的干净?哇. :D

PHP中,你可以写

<?PHP

function isIphone($user_agent=NULL) {
    if(!isset($user_agent)) {
        $user_agent = isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : '';
    }
    return (strpos($user_agent,'iPhone') !== FALSE);
}

if(isIphone()) {
    header('Location: http://www.yourwebsite.com/phone');
    exit();
}

// ...THE REST OF YOUR CODE HERE

?>

并在javascript中可以写

var agent = navigator.userAgent;
var isIphone = ((agent.indexOf('iPhone') != -1) || (agent.indexOf('iPod') != -1)) ;
if (isIphone) {
    window.location.href = 'http://www.yourwebsite.com/phone';
}

希望有帮助.

PK

原文链接:https://www.f2er.com/php/132888.html

猜你在找的PHP相关文章