codeigniter移动检测和桌面版

时间:2013-09-23 15:05:48

标签: codeigniter mobile

我可以使用默认控制器索引功能中的以下代码在手机中获取移动网站。但我想在移动设备中再次浏览桌面版。由于上面的代码驻留在默认控制器索引功能中,因此无法在移动设备中浏览桌面网站,请帮忙

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

1 个答案:

答案 0 :(得分:0)

也许您可以检查设备是否是移动设备,然后询问用户是否需要移动版或完整版,然后加载其中一个。

另请查看this并查看它是否对您有所帮助。