PHP code example of ufukdogan92 / compare
1. Go to this page and download the library: Download ufukdogan92/compare 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/ */
ufukdogan92 / compare example snippets
use Compare\Object\Gte;
use Compare\Object\Lte;
use Compare\Validation;
$validator = new Validation();
$number1 = 100.00;
$number2 = 200.12;
echo '### Greater Than Equal';
echo '<br/>';
echo $validator->compare($number1, $number2, new Gte()) ? 'true' : 'false';
echo '<br/><br/>';
echo '### Less Than Equal';
echo '<br/>';
echo $validator->compare($number1, $number2, new Lte()) ? 'true' : 'false';