PHP code example of unetway / percent

1. Go to this page and download the library: Download unetway/percent 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/ */

    

unetway / percent example snippets

`


use Unetway\Percent\Percent;

$percent = new Percent();
echo $percent->getPercentNumber(100, 30);

`


use Unetway\Percent\Percent;

$percent = new Percent();
echo $percent->getIncreasePrice(100, 30);

`


use Unetway\Percent\Percent;

$percent = new Percent();
echo $percent->getReducePrice(100, 30);

`


use Unetway\Percent\Percent;

$percent = new Percent();
echo $percent->getPercentageDiff(100, 70);