Library for handling decimals in PHP
Require fruitcake/php-decimal
using composer.
<?php
use Fruitcake\Decimal\Decimal;
$decimal = new Decimal('1');
$value = $decimal->sub('0.8');
echo $decimal->toString(2); // "0.20"
Released under the MIT License, see LICENSE.