我想我的网站只能通过手机访问。我使用CodeIgniter框架。
$this->user-agent->moblie()发布于 2015-09-08 08:12:39
要做到这一点,您将使用用户代理库。
agent.html
$this->load->library('user_agent');
if(!$this->agent->is_mobile())
{
exit('Mobiles only');
}https://stackoverflow.com/questions/32451939
复制相似问题