class Money implements JsonSerializable (View source)

class Money

Methods

__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}

add(int|self $value)

Add $value to the current.

sub(int|self $value)

Subtract $value from the current.

mul(int|self $num)

Multiply the current value with $num.

div(int|self $num, int $mode = PHP_ROUND_HALF_UP)

Divide the current value with $num.

int
jsonSerialize()

JsonSerializable implementation.

string
__toString()

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}

Parameters

int $value
MoneyUnit $unit

The unit that the {@param $value} is in.

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

Parameters

MoneyUnit $unit

Return Value

int|float

Money add(int|self $value)

Add $value to the current.

$value must be in satoshi or a Money object

Parameters

int|self $value

The number of satoshi to add, or a Money object

Return Value

Money

Money sub(int|self $value)

Subtract $value from the current.

$value must be in satoshi or a Money object

Parameters

int|self $value

The number of satoshi to subtract, or a Money object

Return Value

Money

Money mul(int|self $num)

Multiply the current value with $num.

Parameters

int|self $num

The multiplier

Return Value

Money

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.

Parameters

int|self $num

The multiplier

int $mode

Use one of the PHP round constants PHP_ROUND_HALF_UP, PHP_ROUND_HALF_EVEN, PHP_ROUND_HALF_ODD or PHP_ROUND_HALF_UP.

Return Value

Money

int jsonSerialize()

JsonSerializable implementation.

Return Value

int

string __toString()

Gets the value as a string.

Return Value

string