PHP code example of jnjxp / rinc
1. Go to this page and download the library: Download jnjxp/rinc 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/ */
jnjxp / rinc example snippets
use Jnjxp\Rinc;
// Rounder
$roundTo = new Rinc\RoundTo;
echo $roundTo->nearest(1/4, 0.24); // 0.25
echo $roundTo->next(1/4, 0.26); // 0.5
echo $roundTo->previous(1/4, 0.46); // 0.25
// Increment
$quarter = new Rinc\Increment(1/4);
echo $quarter(0.24); // 0.25 (same as nearest())
echo $quarter->nearest(0.24); // 0.25
echo $quarter->next(0.26); // 0.5
echo $quarter->previous(0.46); // 0.25
// Named Convenience Constructors
$eighth = Rinc\Increment::eighth(); // new Rinc\Increment(1/8)
$quarter = Rinc\Increment::quarter(); // new Rinc\Increment(1/4)
$half = Rinc\Increment::half(); // new Rinc\Increment(1/2)