Compare commits

...

3 Commits
v0.6.0 ... main

Author SHA1 Message Date
Amast
59f6635936 Fix 2019-12-12 14:40:51 +08:00
Amast
83445da8b2 Fix equals 2019-12-12 14:15:02 +08:00
Amast
38f76de228 Add __toString and toDecimalPlaces method. 2019-12-12 14:12:09 +08:00

View File

@ -15,17 +15,22 @@ use Illuminate\Support\Arr;
class Decimal class Decimal
{ {
protected $source; protected $source;
protected $dp = 20; protected $dp;
// Rounds away from zero.
const ROUND_UP = 0; const ROUND_UP = 0;
// Rounds towards zero.
const ROUND_DOWN = 1; const ROUND_DOWN = 1;
function __construct($v) function __construct($v, int $dp = 8)
{ {
if (!$this->isNumeric($v)) { if (!$this->isNumeric($v)) {
throw new \Exception("value type must be int|float|string|Decimal."); throw new \Exception("value type must be int|float|string|Decimal.");
} }
$this->source = ($v instanceof Decimal) ? $v->getSource() : bcadd($v, 0, $this->dp); $this->dp = $dp;
$val = $v instanceof Decimal ? $v->getSource() : $v;
$this->source = bcadd($val, "0", $dp);
} }
private function isNumeric($v) private function isNumeric($v)
@ -42,7 +47,7 @@ class Decimal
function __call($name, $arguments) function __call($name, $arguments)
{ {
$methods = ['add', 'sub', 'mul', 'div']; $methods = ['add', 'sub', 'mul', 'div'];
if (Arr::has($methods, $name)) { if (in_array($name, $methods)) {
$method = "bc$name"; $method = "bc$name";
$v = new Decimal($arguments[0]); $v = new Decimal($arguments[0]);
return new Decimal($method($this->source, $v->getSource())); return new Decimal($method($this->source, $v->getSource()));
@ -51,9 +56,19 @@ class Decimal
throw new \Exception("method $name not found."); throw new \Exception("method $name not found.");
} }
function __toString(): string
{
return $this->source;
}
function equals($v): bool function equals($v): bool
{ {
return (new Decimal($v))->getSource() == $this->source; return (new Decimal($v))->getSource() == new Decimal($this->source);
}
function toDecimalPlaces(int $dp, int $rm = self::ROUND_UP): Decimal
{
return new Decimal($this->toFixed($dp, $rm), $dp);
} }
function toFixed(int $dp, int $rm = self::ROUND_UP): string function toFixed(int $dp, int $rm = self::ROUND_UP): string