首頁  >  文章  >  後端開發  >  device - PHP 以判断移动设备跳转,怎么回跳?

device - PHP 以判断移动设备跳转,怎么回跳?

WBOY
WBOY原創
2016-06-06 20:41:591089瀏覽

<code>require(dirname(__FILE__)."/lib/Mobile_Detect.php");
$detect = new Mobile_Detect;
$deviceType = ($detect->isMobile() ? ($detect->isTablet() ? 'tablet' : 'phone') : 'computer');

if($_SERVER["SERVER_NAME"] == "nj.xxx.cn" ){        
    if($deviceType == "phone") {
        header("Location:http://m.xxx.cn/");
        exit();
    }
}
</code>

已经判断移动设备

在手机端点使用电脑版 应该怎么处理

回复内容:

<code>require(dirname(__FILE__)."/lib/Mobile_Detect.php");
$detect = new Mobile_Detect;
$deviceType = ($detect->isMobile() ? ($detect->isTablet() ? 'tablet' : 'phone') : 'computer');

if($_SERVER["SERVER_NAME"] == "nj.xxx.cn" ){        
    if($deviceType == "phone") {
        header("Location:http://m.xxx.cn/");
        exit();
    }
}
</code>

已经判断移动设备

在手机端点使用电脑版 应该怎么处理

写session或者cookie,记录客户已经点击了使用电脑版本,然后在判断移动设备的地方加上session判断

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn