1 | <?php |
||
13 | class Amount |
||
14 | { |
||
15 | /** |
||
16 | * @var int |
||
17 | */ |
||
18 | protected $number; |
||
19 | |||
20 | public function __construct($number) |
||
24 | |||
25 | /** |
||
26 | * 获取交易价格(分). |
||
27 | * |
||
28 | * @return int |
||
29 | */ |
||
30 | public function getNumber() |
||
34 | |||
35 | /** |
||
36 | * @param float $price |
||
37 | * |
||
38 | * @return static |
||
39 | */ |
||
40 | public static function Yuan($price) |
||
44 | } |