Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Plain Diff
Browse Files
Authored by
whb
9 years ago
Commit
c5a4ecd67c032c1a2c8fd0cbc22e9004e8ea2f27
2 parents
e361c6c3
88df4715
冲突问题
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
library/Plugin/Helpers.php
library/Plugin/Helpers.php
View file @
c5a4ecd
...
...
@@ -189,8 +189,8 @@ class Helpers
* @return float|string 转换之后的价格
*/
public
static
function
transPrice
(
$price
)
{
return
number_format
(
$price
,
2
,
'.'
,
''
);
{
return
!
empty
(
$price
)
?
number_format
(
$price
,
2
,
'.'
,
''
)
:
0
;
}
/**
...
...
@@ -806,13 +806,13 @@ class Helpers
* @return string
*/
public
static
function
getClientIp
()
{
$ip
=
'0.0.0.0'
;
if
(
isset
(
$_SERVER
[
'HTTP_CLIENT_IP'
])
&&
$_SERVER
[
'HTTP_CLIENT_IP'
]
!=
''
)
$ip
=
$_SERVER
[
'HTTP_CLIENT_IP'
];
elseif
(
isset
(
$_SERVER
[
'HTTP_X_FORWARDED_FOR'
])
&&
$_SERVER
[
'HTTP_X_FORWARDED_FOR'
]
!=
''
)
$ip
=
$_SERVER
[
'HTTP_X_FORWARDED_FOR'
];
elseif
(
isset
(
$_SERVER
[
'REMOTE_ADDR'
])
&&
$_SERVER
[
'REMOTE_ADDR'
]
!=
''
)
{
$ip
=
'0.0.0.0'
;
if
(
isset
(
$_SERVER
[
'HTTP_CLIENT_IP'
])
&&
$_SERVER
[
'HTTP_CLIENT_IP'
]
!=
''
)
$ip
=
$_SERVER
[
'HTTP_CLIENT_IP'
];
elseif
(
isset
(
$_SERVER
[
'HTTP_X_FORWARDED_FOR'
])
&&
$_SERVER
[
'HTTP_X_FORWARDED_FOR'
]
!=
''
)
$ip
=
$_SERVER
[
'HTTP_X_FORWARDED_FOR'
];
elseif
(
isset
(
$_SERVER
[
'REMOTE_ADDR'
])
&&
$_SERVER
[
'REMOTE_ADDR'
]
!=
''
)
$ip
=
$_SERVER
[
'REMOTE_ADDR'
];
return
$ip
;
}
...
...
Please
register
or
login
to post a comment