1. Go to this page and download the library: Download illegal/fluent-bcmath library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
illegal / fluent-bcmath example snippets
use Illegal\FluentBCMath\BCNumber;
$num = new BCNumber('1.23', 2);
$num->add(2)->sub(2)->mul(2)->div(2)->mod(3)->pow(2)->sqrt();
use Illegal\FluentBCMath\BCNumber;
$num = new BCNumber('1.23', 2); // 1st argument is the number, 2nd argument is the scale
$num = fnum('1.23', 2); // 1st argument is the number, 2nd argument is the scale