Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
token
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wallet
token
Commits
65a5b07c
Commit
65a5b07c
authored
Jun 13, 2019
by
shajiaiming
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
小数点后变4位
parent
836c9ded
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
CoinService.php
common/service/coin/CoinService.php
+4
-4
No files found.
common/service/coin/CoinService.php
View file @
65a5b07c
...
@@ -66,7 +66,7 @@ class CoinService extends Coin implements CoinInterface
...
@@ -66,7 +66,7 @@ class CoinService extends Coin implements CoinInterface
*/
*/
public
function
setPrice
(
$price
)
public
function
setPrice
(
$price
)
{
{
$this
->
price
=
(
float
)
sprintf
(
"%0.
2
f"
,
$price
);
$this
->
price
=
(
float
)
sprintf
(
"%0.
4
f"
,
$price
);
}
}
/**
/**
...
@@ -155,7 +155,7 @@ class CoinService extends Coin implements CoinInterface
...
@@ -155,7 +155,7 @@ class CoinService extends Coin implements CoinInterface
*/
*/
public
function
setHigh
(
$high
)
public
function
setHigh
(
$high
)
{
{
$this
->
high
=
(
float
)
sprintf
(
"%0.
2
f"
,
$high
/
6.6
);
$this
->
high
=
(
float
)
sprintf
(
"%0.
4
f"
,
$high
/
6.6
);
}
}
/**
/**
...
@@ -184,7 +184,7 @@ class CoinService extends Coin implements CoinInterface
...
@@ -184,7 +184,7 @@ class CoinService extends Coin implements CoinInterface
*/
*/
public
function
setLow
(
$low
)
public
function
setLow
(
$low
)
{
{
$this
->
low
=
(
float
)
sprintf
(
"%0.
2
f"
,
$low
/
6.6
);
$this
->
low
=
(
float
)
sprintf
(
"%0.
4
f"
,
$low
/
6.6
);
}
}
/**
/**
...
@@ -517,7 +517,7 @@ class CoinService extends Coin implements CoinInterface
...
@@ -517,7 +517,7 @@ class CoinService extends Coin implements CoinInterface
//价格与涨幅
//价格与涨幅
$pattern
=
'/<div class=coinprice>(.*?)<span class=(tags-red|tags-green)>(.*?)<\/span><\/div>/is'
;
$pattern
=
'/<div class=coinprice>(.*?)<span class=(tags-red|tags-green)>(.*?)<\/span><\/div>/is'
;
preg_match_all
(
$pattern
,
$content
,
$matchs
,
PREG_SET_ORDER
);
preg_match_all
(
$pattern
,
$content
,
$matchs
,
PREG_SET_ORDER
);
$result
[
'price'
]
=
(
float
)
sprintf
(
"%0.
2
f"
,
(
float
)
str_replace
([
'¥'
,
','
],
''
,
$matchs
[
0
][
1
]));
$result
[
'price'
]
=
(
float
)
sprintf
(
"%0.
4
f"
,
(
float
)
str_replace
([
'¥'
,
','
],
''
,
$matchs
[
0
][
1
]));
//美元 btc
//美元 btc
preg_match_all
(
'/<div class=sub><span>(.*?)<\/span>(.*?)<span>(.*?)<\/span><\/div>/is'
,
$content
,
preg_match_all
(
'/<div class=sub><span>(.*?)<\/span>(.*?)<span>(.*?)<\/span><\/div>/is'
,
$content
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment