Codeigniter user_agent

时间:2013-04-18 17:10:43

标签: codeigniter user-agent

这是我第一次开发响应式网站,我尝试使用CodeIgniter user_agent类。

我注意到了

is_mobile()

is_browser()

但是,我想到的图片是平板电脑上的网站看起来与浏览器非常相似,只有移动网站才能加载不同的view文件。

然而,is_mobile()包括平板电脑和手机,并不是我所希望的。有替代方案吗?

原因:我正在使用jQuery mobile,我为手机加载了一个完全不同的布局,我不希望这个视图出现在平板电脑上。

1 个答案:

答案 0 :(得分:6)

你有几个选择。

您可以扩展库并创建检查平板电脑的方法:

class MY_User_agent extends CI_User_agent {

    public function __construct()
    {
        parent::__construct();
    }

    public function is_tablet()
    {
        //logic to check for tablet
    }
}

// usage
$this->load->library('user_agent');
$this->user_agent->is_tablet();

或者您可以覆盖库中现有的is_mobile()方法以获得所需的功能:

class MY_User_agent extends CI_User_agent {

    public function __construct()
    {
        parent::__construct();
    }

    public function is_mobile()
    {
        // you can copy the original method here and modify it to your needs
    }
}

// usage
$this->load->library('user_agent');
$this->user_agent->is_mobile();

https://www.codeigniter.com/user_guide/general/creating_libraries.html


实施例

应用/库/ MY_User_agent.php:

class MY_User_agent extends CI_User_agent {

    public function __construct()
    {
        parent::__construct();
    }

    public function is_ipad()
    {
        return (bool) strpos($_SERVER['HTTP_USER_AGENT'],'iPad');
            // can add other checks for other tablets
    }
}

控制器:

public function index()
{
    $this->load->library('user_agent');

    ($this->agent->is_ipad() === TRUE) ? $is_ipad = "Yes" : $is_ipad = "No";

    echo "Using ipad: $is_ipad";

}