Skip to content

Latest commit

History

History
22 lines (14 loc) 路 325 Bytes

isPositive.md

File metadata and controls

22 lines (14 loc) 路 325 Bytes

isPositive()

checks whether the money's number is positive (greater than zero).

Methods

isPositive()

Returns: bool

Usage

$m1 = money('1000000');
$m2 = money('-1000000');

$m1->isPositive(); // true
$m2->isPositive(); // false

馃搶 Back to the contents.