我已经能够通过CodeIgniter检测用户正在使用的移动设备,但我无法检测当前移动设备正在运行的操作系统.
假设有人正在使用在Android上运行的三星移动设备,而另一个正在使用仍然是三星的普通Java移动操作系统.如何查看每个用户所在的操作系统?
从
http://mobiledetect.net下载库
将Mobile_Detect.PHP放入’库’
原文链接:https://www.f2er.com/php/136761.html将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的文档