class Money (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}

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

string __toString()

Gets the value as a string.

Return Value

string