zl程序教程

您现在的位置是:首页 >  硬件

当前栏目

获取当前访问的设备类型

设备 获取 类型 访问 当前
2023-09-11 14:19:50 时间
/**
 * 获取当前访问的设备类型
 * @return integer 1:其他  2:iOS  3:Android
 */
function get_device_type(){
    //全部变成小写字母
    $agent = strtolower($_SERVER['HTTP_USER_AGENT']);
    $type = 1;
    //分别进行判断
    if(strpos($agent, 'iphone')!==false || strpos($agent, 'ipad')!==false){
        $type = 2;
    } 
    if(strpos($agent, 'android')!==false){
        $type = 3;
    }
    return $type;
}