效果截图:
php代码:
function get_device_type()
{
//全部变成小写字母
$agent = strtolower($_SERVER[‘HTTP_USER_AGENT’]);
$type = ‘other’;
//分别进行判断
if(strpos($agent, ‘iphone’) || strpos($agent, ‘ipad’))
{
$type = ‘ios’;
}
if(strpos($agent, ‘android’))
{
$type = ‘android’;
}
return $type;
}
海报
0 条评论
114
相关文章
本站已关闭游客评论,请登录或者注册后再评论吧~