Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
xiaowei
9 years ago
Commit
743fce23966e426749a10a4291bae4178af2fe4f
1 parent
4a19d289
clientType问题
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
17 additions
and
15 deletions
library/Api/Yohobuy.php
library/Api/Yohobuy.php
View file @
743fce2
...
...
@@ -12,6 +12,7 @@
namespace
Api
;
use
Plugin\Cache
;
class
Yohobuy
{
/* 正式环境 */
...
...
@@ -66,25 +67,26 @@ class Yohobuy
public
static
function
clientType
()
{
if
(
self
::
isMobile
())
{
// 苹果设备
if
(
strstr
(
$_SERVER
[
'HTTP_USER_AGENT'
],
'iPhone'
))
{
return
'iphone'
;
}
// 苹果IPAD
elseif
(
strstr
(
$_SERVER
[
'HTTP_USER_AGENT'
],
'iPad'
))
{
return
'ipad'
;
}
elseif
(
stristr
(
$_SERVER
[
'HTTP_USER_AGENT'
],
'android'
))
{
return
'android'
;
}
// 其它
else
{
return
'h5'
;
}
return
'h5'
;
}
else
{
return
'web'
;
}
// // 苹果设备
// if (strstr($_SERVER['HTTP_USER_AGENT'], 'iPhone')) {
// return 'iphone';
// }
// // 苹果IPAD
// elseif (strstr($_SERVER['HTTP_USER_AGENT'], 'iPad')) {
// return 'ipad';
// }
// elseif (stristr($_SERVER['HTTP_USER_AGENT'], 'android')) {
// return 'android';
// }
// // 其它
// else {
// return 'android';
// }
}
/**
...
...
Please
register
or
login
to post a comment