PHP code example of madebybob / php-number

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
 php
$total = $number->divide($variable, null, '1.000');
 php
$total = $number
    ->multiply('200')
    ->mul('200'); // mul is an alias for multiply
 php
$newNumber = $number
    ->modulus('200')
    ->mod('200'); // mod is an alias for modulus
 php
$sqrt = $number
    ->sqrt()
    ->squareRoot(); // squareRoot is an alias for sqrt
 php
$number = new Number('-200');

// $absolute will be 200
$absolute = $number->absolute();

// abs is an alias for absolute
$abs = $number->abs();
 php
$number = new Number('200');

// $absolute will be -200
$absolute = $number->opposite();

// opp is an alias for absolute
$abs = $number->opp();
 php
$two = new Number(2);
$four = $two->plus(2);

echo $two->toString(); // $two is still 2
 php
$number = new Number('200');

$result = $number
    ->add(200)
    ->subtract(109.5)
    ->mul($two)
    ->toString();
` bash
./vendor/bin/php-cs-fixer fix