1. Go to this page and download the library: Download madebybob/php-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/ */
madebybob / php-number example snippets
$number = new Number('200');
// $result will be 250
$result = $number->min('250');
// $result will be 100
$result = $number->max('100');
$number = new Number('200');
// $result will be 150
$result = $number->clamp('100', '150');
bash
composer
php
$total = $number
->add('200')
->plus('200');
php
$total = $number
->divide('200')
->div('200'); // div is an alias for divide