Money
class Money implements JsonSerializable (View source)
class Money
Methods
Creates e new Money object from {@param $value} and {@param $unit}
Format the value in {@param $unit}
JsonSerializable implementation.
Gets the value as a string.
Details
__construct(int $value, MoneyUnit $unit = MoneyUnit::Sat)
Creates e new Money object from {@param $value} and {@param $unit}
int|float
format(MoneyUnit $unit = MoneyUnit::Sat)
Format the value in {@param $unit}
Note that the return value may be a scientific notation 1 Sat = 1.0E-6 Cent
Money
add(int|self $value)
Add $value to the current.
$value must be in satoshi or a Money object
Money
sub(int|self $value)
Subtract $value from the current.
$value must be in satoshi or a Money object
Money
mul(int|self $num)
Multiply the current value with $num.
Money
div(int|self $num, int $mode = PHP_ROUND_HALF_UP)
Divide the current value with $num.
Note that the resulting value will be rounded using PHP round method and then cast to int.
int
jsonSerialize()
JsonSerializable implementation.
string
__toString()
Gets the value as a string.