当前位置:Gxlcms > PHP教程 > php如何判断访问系统的用户设备类型(代码示例)

php如何判断访问系统的用户设备类型(代码示例)

时间:2021-07-01 10:21:17 帮助过:70人阅读

本篇文章给大家带来的内容是关于php如何判断访问系统的用户设备类型(代码示例),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。

当今的电子设备越来越多,我们在开发过程中往往也需要分析用户使用的电子设备类型。下面是采用PHP代码来获取用户使用的哪些类型的电子设备来访问自己的平台。

/**
 * 用户设备类型
 * @return string
 */
function clientOS() {

    $agent = strtolower($_SERVER['HTTP_USER_AGENT']);

    if(strpos($agent, 'windows nt')) {
        $platform = 'windows';
    } elseif(strpos($agent, 'macintosh')) {
        $platform = 'mac';
    } elseif(strpos($agent, 'ipod')) {
        $platform = 'ipod';
    } elseif(strpos($agent, 'ipad')) {
        $platform = 'ipad';
    } elseif(strpos($agent, 'iphone')) {
        $platform = 'iphone';
    } elseif (strpos($agent, 'android')) {
        $platform = 'android';
    } elseif(strpos($agent, 'unix')) {
        $platform = 'unix';
    } elseif(strpos($agent, 'linux')) {
        $platform = 'linux';
    } else {
        $platform = 'other';
    }

    return $platform;
}

以上就是php如何判断访问系统的用户设备类型(代码示例)的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行