Skip to content

Latest commit

History

History
19 lines (12 loc) 路 313 Bytes

absolute.md

File metadata and controls

19 lines (12 loc) 路 313 Bytes

absolute()

turns the amount of the monetary object into an absolute value. $ -10.25 -> $ 10.25

Methods

absolute()

Returns: Money

Usage

$money = money('-102500');  // $ -10.3
$money->absolute();         // $ 10.3

馃搶 Back to the contents.