欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-06-12 15:04:40
...
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();
    }
}

已经判断移动设备

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

回复内容:

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();
    }
}

已经判断移动设备

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

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

相关标签: php device