提交 5a45bcc1 编写于 作者: 李光春's avatar 李光春

- 修复请求门面手机设备类型

上级 9f18bb66
## v6.0.97 / 2020-07-18
- 修复请求门面手机设备类型
## v6.0.90 / 2020-07-18 ## v6.0.90 / 2020-07-18
- 优化代码 - 优化代码
......
...@@ -28,7 +28,7 @@ use think\db\exception\ModelNotFoundException; ...@@ -28,7 +28,7 @@ use think\db\exception\ModelNotFoundException;
/** /**
* 定义当前版本 * 定义当前版本
*/ */
const VERSION = '6.0.90'; const VERSION = '6.0.91';
if (!function_exists('get_ip_info')) { if (!function_exists('get_ip_info')) {
/** /**
......
...@@ -234,7 +234,7 @@ class Requests ...@@ -234,7 +234,7 @@ class Requests
$agent = strtolower(request()->server('HTTP_USER_AGENT')); $agent = strtolower(request()->server('HTTP_USER_AGENT'));
$type = 'other'; $type = 'other';
if (strpos($agent, 'iphone') || strpos($agent, 'ipad')) { if (strpos($agent, 'iphone') || strpos($agent, 'ipad')) {
$type = 'mobile'; $type = 'ios';
} }
if (strpos($agent, 'android')) { if (strpos($agent, 'android')) {
$type = 'android'; $type = 'android';
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册