PHP code example of springy-framework / business-days-calculator
1. Go to this page and download the library: Download springy-framework/business-days-calculator 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/ */
springy-framework / business-days-calculator example snippets
ing dynamic mode
$today = new DateTime();
$bdCalc = new Springy\BusinessDaysCalculator($today);
$newDate = $bdCalc->addBrazilianHolidays((int) $today->format('Y'))
->addBrazilianHolidays((int) $today->format('Y') + 1)
->addBusinessDays(20)
->getDate();
var_dump($newDate);
if ($bdCalc->isBusinessDay()) {
echo "Is a business day\n";
}
// Getting nth business date in 'Y-m-d' format string without create an object
echo "The 20th business day from now is "
. Springy\BusinessDaysCalculator::getBusinessDate(20)
. "\n";