用户设备、UA检测 相关

江枫思渺然 提交于 2019-12-01 08:10:47

用户设备、UA检测 相关

https://github.com/jenssegers/agent

//识别移动设备
//$agent->isMobile();//手机
//$agent->isTablet();//平板
//$agent->isDesktop();//桌面端

//获取设备信息
//$agent->device();

//操作系统信息
//$agent->platform();

//浏览器信息
//$agent->browser();



// 获取浏览器版本
//$browser = $agent->browser();
//$version = $agent->version($browser);
// 获取系统版本
//$platform = $agent->platform();
//$version = $agent->version($platform);

// https://github.com/jenssegers/agent
// http://www.thinkphp.cn/code/3991.html

http://www.thinkphp.cn/code/3991.html

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!