PHP code example of dovab / big-number
1. Go to this page and download the library: Download dovab/big-number 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/ */
dovab / big-number example snippets
$number = new BigNumber('4839276542939265829734291003');
$number->setScale(4)
->add(5)
->multiply(11.98)
->subtract(new BigNumber('19478320759'))
->divide('9894675903.83755');
echo $number;