php – CodeIgniter移动操作系统检测

前端之家收集整理的这篇文章主要介绍了php – CodeIgniter移动操作系统检测前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经能够通过CodeIgniter检测用户正在使用的移动设备,但我无法检测当前移动设备正在运行的操作系统.

假设有人正在使用在Android上运行的三星移动设备,而另一个正在使用仍然是三星的普通Java移动操作系统.如何查看每个用户所在的操作系统?

http://mobiledetect.net下载库
将Mobile_Detect.PHP放入’库’

在主控制器内

public function index() {
    $this -> load -> library('Mobile_Detect');
    $detect = new Mobile_Detect();
    if ($detect->isMobile() || $detect->isTablet() || $detect->isAndroidOS()) {
        header("Location: ".$this->config->item('base_url')."/mobile"); exit;
    }
}

查找http://dwij.co.in/mobile-os-detection-in-php-codeigniter的文档

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

猜你在找的PHP相关文章