webinv/bigdecimal

1.0.3 2019-01-23 16:32 UTC

This package is auto-updated.

Last update: 2024-04-24 04:42:02 UTC


README

Build Status Latest Stable Version Total Downloads Latest Unstable Version License

Installation

composer require webinv/bigdecimal

Usage

use Webinv\Types\BigDecimal\BigDecimal;

$bigdecimal = new BigDecimal('0.00008630');
$bigdecimal->add('0.00000001');

if ($bigdecimal->isGreaterThan('0.00008630')) {
    echo 'Yes !';
}