1. Go to this page and download the library: Download cmixin/business-time 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/ */
cmixin / business-time example snippets
use Carbon\Carbon;
use Cmixin\BusinessTime;
BusinessTime::enable(Carbon::class);
// Or if you use Laravel:
// BusinessTime::enable('Illuminate\Support\Carbon');
// And you can enable multiple classes at once:
BusinessTime::enable([
Carbon::class,
CarbonImmutable::class,
]);
// As a second argument you can set default opening hours:
BusinessTime::enable(Carbon::class, [
'monday' => ['09:00-12:00', '13:00-18:00'],
'tuesday' => ['09:00-12:00', '13:00-18:00'],
'wednesday' => ['09:00-12:00'],
'thursday' => ['09:00-12:00', '13:00-18:00'],
'friday' => ['09:00-12:00', '13:00-20:00'],
'saturday' => ['09:00-12:00', '13:00-16:00'],
'sunday' => [],
'exceptions' => [
'2016-11-11' => ['09:00-12:00'],
'2016-12-25' => [],
'01-01' => [], // Recurring on each 1st of january
'12-25' => ['09:00-12:00'], // Recurring on each 25th of december
],
// You can use the holidays provided by BusinessDay
// and mark them as fully closed days using 'holidaysAreClosed'
'holidaysAreClosed' => true,
// Note that exceptions will still have the precedence over
// the holidaysAreClosed option.
'holidays' => [
'region' => 'us-ny', // Load the official list of holidays from USA - New York
'with' => [
'labor-day' => null, // Remove the Labor Day (so the business is open)
'company-special-holiday' => '04-07', // Add some custom holiday of your company
],
],
]);
BusinessTime::enable(Carbon::class, [
'monday' => ['09:00-12:00', '13:00-18:00'],
'tuesday' => ['09:00-12:00', '13:00-18:00'],
'wednesday' => ['09:00-12:00'],
'thursday' => ['09:00-12:00', '13:00-18:00'],
'friday' => ['09:00-12:00', '13:00-20:00'],
'saturday' => ['09:00-12:00', '13:00-16:00'],
'sunday' => [],
'exceptions' => [
function (Carbon $date) {
if ($date->isHoliday()) {
// Or use ->isObservedHoliday() and set observed holidays:
// https://github.com/kylekatarnls/business-day#setobservedholidayszone
switch ($date->getHolidayId()) {
// If the ID "christmas" exists in the selected holidays region and matches the current date:
case 'christmas':
return ['10:00-12:00'];
default:
return []; // All other holidays are closed all day long
// Here you can also pass context data:
return [
'hours' => [],
'data' => [
'reason' => 'Today is ' . $date->getHolidayName(),
],
];
}
}
// Else, typical day => use days of week settings
},
],
]);
Carbon::setHolidaysRegion('us-national');
Carbon::parse('2018-12-25 11:00')->isOpen(); // true matches custom opening hours of Christmas
Carbon::parse('2018-12-25 13:00')->isOpen(); // false
Carbon::parse('2019-01-01 11:00')->isOpen(); // false closed all day long
Carbon::parse('2019-01-02 11:00')->isOpen(); // true not an holiday in us-national region, so it's open as any common wednesday
Carbon::isOpenOn('monday') // Returns true if there is at least 1 open range of
// hours set for Monday (in the regular schedule)
// Carbon::MONDAY would also works
$date->isOpenOn('monday') // Same as above but using local config of $date
Carbon::isOpenOn('2020-09-03') // Returns true if there is at least 1 open range of
// hours set for the date 2020-09-03 (considering both
// the regular schedule and the exceptions)
Carbon::isOpen() // returns true if the business is now open
$carbonDate->isOpen() // returns true if the business is open at the current date and time
if (Carbon::isOpen()) {
$closingTime = Carbon::nextClose()->isoFormat('LT');
echo "It's now open and until $closingTime.";
}
Carbon::isClosed() // returns true if the business is now closed
$carbonDate->isClosed() // returns true if the business is closed at the current date and time
if (Carbon::isClosed()) {
$openingTime = Carbon::nextClose()->calendar();
echo "It's now closed and will re-open $openingTime.";
}
Carbon::nextOpen() // go to next open time from now
$carbonDate->nextOpen() // go to next open time from $carbonDate
Carbon::nextClose() // go to next close time from now
$carbonDate->nextClose() // go to next close time from $carbonDate
Carbon::previousOpen() // go to previous open time from now
$carbonDate->previousOpen() // go to previous open time from $carbonDate
Carbon::previousClose() // go to previous close time from now
$carbonDate->previousClose() // go to previous close time from $carbonDate
Carbon::addOpenTime('2 hours and 30 minutes') // add 2 hours and 30 minutes to now
$carbonDate->addOpenTime('2 hours and 30 minutes') // add 2 hours and 30 minutes to $carbonDate
// Can be used with the same interval definitions than add/sub methods of Carbon
$carbonDate->addOpenTime(235, 'seconds')
$carbonDate->addOpenTime(new DateInterval('PT1H23M45S'))
$carbonDate->addOpenTime(CarbonInterval::hours(3)->minutes(20))
$carbonDate->addOpenTime('2 hours and 30 minutes', BusinessTime::HOLIDAYS_ARE_CLOSED)
// add 2 hours and 30 minutes considering holidays as closed (equivalent than using 'holidaysAreClosed' => true option)
Carbon::addOpenHours(3) // add 3 open hours to now
$carbonDate->addOpenHours(3) // add 3 open hours to $carbonDate
$carbonDate->addOpenHours(3, BusinessTime::HOLIDAYS_ARE_CLOSED)
// add 3 open hours considering holidays as closed (equivalent than using 'holidaysAreClosed' => true option)
Carbon::addOpenMinutes(3) // add 3 open minutes to now
$carbonDate->addOpenMinutes(3) // add 3 open minutes to $carbonDate
$carbonDate->addOpenMinutes(3, BusinessTime::HOLIDAYS_ARE_CLOSED)
// add 3 open minutes considering holidays as closed (equivalent than using 'holidaysAreClosed' => true option)
Carbon::addClosedTime('2 hours and 30 minutes') // add 2 hours and 30 minutes to now
$carbonDate->addClosedTime('2 hours and 30 minutes') // add 2 hours and 30 minutes to $carbonDate
// Can be used with the same interval definitions than add/sub methods of Carbon
$carbonDate->addClosedTime(235, 'seconds')
$carbonDate->addClosedTime(new DateInterval('PT1H23M45S'))
$carbonDate->addClosedTime(CarbonInterval::hours(3)->minutes(20))
$carbonDate->addClosedTime('2 hours and 30 minutes', BusinessTime::HOLIDAYS_ARE_CLOSED)
// add 2 hours and 30 minutes considering holidays as closed (equivalent than using 'holidaysAreClosed' => true option)
Carbon::addClosedHours(3) // add 3 closed hours to now
$carbonDate->addClosedHours(3) // add 3 closed hours to $carbonDate
$carbonDate->addClosedHours(3, BusinessTime::HOLIDAYS_ARE_CLOSED)
// add 3 closed hours considering holidays as closed (equivalent than using 'holidaysAreClosed' => true option)
Carbon::addClosedMinutes(3) // add 3 closed minutes to now
$carbonDate->addClosedMinutes(3) // add 3 closed minutes to $carbonDate
$carbonDate->addClosedMinutes(3, BusinessTime::HOLIDAYS_ARE_CLOSED)
// add 3 closed minutes considering holidays as closed (equivalent than using 'holidaysAreClosed' => true option)
Carbon::subOpenTime('2 hours and 30 minutes') // subtract 2 hours and 30 minutes to now
$carbonDate->subOpenTime('2 hours and 30 minutes') // subtract 2 hours and 30 minutes to $carbonDate
// Can be used with the same interval definitions than add/sub methods of Carbon
$carbonDate->subOpenTime(235, 'seconds')
$carbonDate->subOpenTime(new DateInterval('PT1H23M45S'))
$carbonDate->subOpenTime(CarbonInterval::hours(3)->minutes(20))
$carbonDate->subOpenTime('2 hours and 30 minutes', BusinessTime::HOLIDAYS_ARE_CLOSED)
// subtract 2 hours and 30 minutes considering holidays as closed (equivalent than using 'holidaysAreClosed' => true option)
Carbon::subOpenHours(3) // subtract 3 open hours to now
$carbonDate->subOpenHours(3) // subtract 3 open hours to $carbonDate
$carbonDate->subOpenHours(3, BusinessTime::HOLIDAYS_ARE_CLOSED)
// subtract 3 open hours considering holidays as closed (equivalent than using 'holidaysAreClosed' => true option)
Carbon::subOpenMinutes(3) // subtract 3 open minutes to now
$carbonDate->subOpenMinutes(3) // subtract 3 open minutes to $carbonDate
$carbonDate->subOpenMinutes(3, BusinessTime::HOLIDAYS_ARE_CLOSED)
// subtract 3 open minutes considering holidays as closed (equivalent than using 'holidaysAreClosed' => true option)
Carbon::subClosedTime('2 hours and 30 minutes') // subtract 2 hours and 30 minutes to now
$carbonDate->subClosedTime('2 hours and 30 minutes') // subtract 2 hours and 30 minutes to $carbonDate
// Can be used with the same interval definitions than add/sub methods of Carbon
$carbonDate->subClosedTime(235, 'seconds')
$carbonDate->subClosedTime(new DateInterval('PT1H23M45S'))
$carbonDate->subClosedTime(CarbonInterval::hours(3)->minutes(20))
$carbonDate->subClosedTime('2 hours and 30 minutes', BusinessTime::HOLIDAYS_ARE_CLOSED)
// subtract 2 hours and 30 minutes considering holidays as closed (equivalent than using 'holidaysAreClosed' => true option)
Carbon::subClosedHours(3) // subtract 3 closed hours to now
$carbonDate->subClosedHours(3) // subtract 3 closed hours to $carbonDate
$carbonDate->subClosedHours(3, BusinessTime::HOLIDAYS_ARE_CLOSED)
// subtract 3 closed hours considering holidays as closed (equivalent than using 'holidaysAreClosed' => true option)
Carbon::subClosedMinutes(3) // subtract 3 closed minutes to now
$carbonDate->subClosedMinutes(3) // subtract 3 closed minutes to $carbonDate
$carbonDate->subClosedMinutes(3, BusinessTime::HOLIDAYS_ARE_CLOSED)
// subtract 3 closed minutes considering holidays as closed (equivalent than using 'holidaysAreClosed' => true option)
BusinessTime::enable(Carbon::class, [
'monday' => [
'data' => [
'remarks' => 'Extra evening on Monday',
],
'hours' => [
'09:00-12:00',
'13:00-18:00',
'19:00-20:00',
]
],
// ...
]);
$todayRanges = Carbon::getCurrentDayOpeningHours(); // Equivalent to Carbon::now()->getCurrentDayOpeningHours()
// You can also get opening hours of any other day: Carbon::parse('2018-01-16')->getCurrentDayOpeningHours()
echo '<h1>Today office open hours</h1>';
$data = $todayRanges->getData();
if (is_array($data) && isset($data['remarks'])) {
echo '<p><em>' . $data['remarks'] . '</em></p>';
}
// $todayRanges is iterable on every time range of the day.
foreach ($todayRanges as $range) {
// TimeRange object have start, end and data properties but can also be implicitly converted as strings:
echo '<p><time>' . $range . '</time></p>';
}
// $todayRanges can also be directly dumped as string
echo '<p>' . $todayRanges . '</p>';
Carbon::setHolidaysRegion('us-national');
Carbon::isBusinessOpen() // returns true if the business is now open and not an holiday
$carbonDate->isBusinessOpen() // returns true if the business is open and not an holiday at the current date and time
Carbon::setHolidaysRegion('us-national');
Carbon::isBusinessClosed() // returns true if the business is now closed or an holiday
$carbonDate->isBusinessClosed() // returns true if the business is closed or an holiday at the current date and time
$start = '2021-04-05 21:00';
$end = '2021-04-05 10:00:00'; // can be date instance, a string representation or a timestamp
$options = 0;
$interval = Carbon::parse($start)->diffAsBusinessInterval($end, $options);
Carbon::parse($start)->diffAsBusinessInterval($end, BusinessTime::CLOSED_TIME | BusinessTime::HOLIDAYS_ARE_CLOSED | BusinessTime::RELATIVE_DIFF);
// - return relative total closed time between $start and $end
// - considering holidays as closed
// - it will be negative if $start < $end
// Opening hours in Toronto
BusinessTime::enable(Carbon::class, [
'monday' => ['08:00-20:00'],
'tuesday' => ['08:00-20:00'],
'wednesday' => ['08:00-20:00'],
'thursday' => ['08:00-20:00'],
]);
// Can I call the hotline if it's Tuesday 19:30 in Tokyo? > No
Carbon::parse('2019-03-05 20:30', 'Asia/Tokyo')->setTimezone('America/Toronto')->isOpen() // false
// Can I call the hotline if it's Tuesday 22:30 in Tokyo? > Yes
Carbon::parse('2019-03-05 22:30', 'Asia/Tokyo')->setTimezone('America/Toronto')->isOpen() // true
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.