1

我安装了 CI Bonfire,但我不知道在哪里可以检测到用户是在移动设备还是台式 PC 上查看页面?这是直接在前端控制器中完成的application/core/Base_Controller.php吗?

如果用户在台式电脑上,我需要将他们重定向到我安装中的特定页面。这必须在我的网站上的所有控制器中都可以检测到。

4

2 回答 2

1

加载用户代理库

$this->load->library('user_agent');

使用此功能检测是否移动

$mobile=$this->agent->is_mobile();
if($mobile){
  //your code
}
于 2016-12-15T12:15:03.333 回答
0

您可以简单地在您的根文件中进行以下检查(开始)。

$isMobile = (bool)preg_match('#\b(ip(hone|od|ad)|android|opera m(ob|in)i|windows (phone|ce)|blackberry|tablet'.
                    '|s(ymbian|eries60|amsung)|p(laybook|alm|rofile/midp|laystation portable)|nokia|fennec|htc[\-_]'.
                    '|mobile|up\.browser|[1-4][0-9]{2}x[1-4][0-9]{2})\b#i', $_SERVER['HTTP_USER_AGENT'] );

if(isMobile())
    header("Location: http://m.site.com/");
于 2014-11-13T13:54:49.013 回答