PHP code example of blesta / proration
1. Go to this page and download the library: Download blesta/proration 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/ */
blesta / proration example snippets
use Blesta\Proration\Proration;
$start_date = date('c');
$prorate_day = 1;
$term = 1;
$period = 'month';
$proration = new Proration($start_date, $prorate_day, $term, $period);
echo $proration->prorateDate();
echo $proration->canProrate();
echo $proration->prorateDays();
echo $proration->proratePrice(5.00);