php如何判断访问系统的用户设备类型(代码示例)
发布:smiling 来源: PHP粉丝网 添加日期:2020-01-16 11:10:13 浏览: 评论:0
本篇文章给大家带来的内容是关于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';
- } //phpfensi.com
- return $platform;
- }
Tags: php用户设备类型
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)