A helper to query and format a set of opening hours
[](https://packagist.org/packages/spatie/opening-hours)
[](LICENSE.md)
[](https://actions-badge.atrox.dev/spatie/opening-hours/goto)
[](https://codecov.io/github/spatie/opening-hours?branch=master)
[](https://scrutinizer-ci.com/g/spatie/opening-hours)
[](https://styleci.io/repos/69368104)
[](https://packagist.org/packages/spatie/opening-hours)
With spatie/opening-hours you create an object that describes a business' opening hours, which you can query for open or closed on days or specific dates, or use to present the times per day., (*1)
spatie/opening-hours can be used directly on Carbon thanks
to cmixin/business-time so you can benefit
opening hours features directly on your enhanced date objects., (*2)
A set of opening hours is created by passing in a regular schedule, and a list of exceptions., (*3)
// Add the use at the top of each file where you want to use the OpeningHours class:
use Spatie\OpeningHours\OpeningHours;
$openingHours = OpeningHours::create([
'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
],
]);
// This will allow you to display things like:
$now = new DateTime('now');
$range = $openingHours->currentOpenRange($now);
if ($range) {
echo "It's open since ".$range->start()."\n";
echo "It will close at ".$range->end()."\n";
} else {
echo "It's closed since ".$openingHours->previousClose($now)->format('l H:i')."\n";
echo "It will re-open at ".$openingHours->nextOpen($now)->format('l H:i')."\n";
}
The object can be queried for a day in the week, which will return a result based on the regular schedule:, (*4)
// Open on Mondays:
$openingHours->isOpenOn('monday'); // true
// Closed on Sundays:
$openingHours->isOpenOn('sunday'); // false
It can also be queried for a specific date and time:, (*5)
// Closed because it's after hours:
$openingHours->isOpenAt(new DateTime('2016-09-26 19:00:00')); // false
// Closed because Christmas was set as an exception
$openingHours->isOpenOn('2016-12-25'); // false
It can also return arrays of opening hours for a week or a day:, (*6)
// OpeningHoursForDay object for the regular schedule
$openingHours->forDay('monday');
// OpeningHoursForDay[] for the regular schedule, keyed by day name
$openingHours->forWeek();
// Array of day with same schedule for the regular schedule, keyed by day name, days combined by working hours
$openingHours->forWeekCombined();
// OpeningHoursForDay object for a specific day
$openingHours->forDate(new DateTime('2016-12-25'));
// OpeningHoursForDay[] of all exceptions, keyed by date
$openingHours->exceptions();
On construction, you can set a flag for overflowing times across days. For example, for a nightclub opens until 3am on Friday and Saturday:, (*7)
In the example above, data are strings but it can be any kind of value. So you can embed multiple properties in an array., (*10)
For structure convenience, the data-hours couple can be a fully-associative array, so the example above is strictly equivalent to the following:, (*11)
$openingHours = OpeningHours::create([
'monday' => [
'hours' => [
'09:00-12:00',
'13:00-18:00',
],
'data' => 'Typical Monday',
],
'tuesday' => [
['hours' => '09:00-12:00'],
['hours' => '13:00-18:00'],
['hours' => '19:00-21:00', 'data' => 'Extra on Tuesday evening'],
],
// Open by night from Wednesday 22h to Thursday 7h:
'wednesday' => ['22:00-24:00'], // use the special "24:00" to reach midnight included
'thursday' => ['00:00-07:00'],
'exceptions' => [
'2016-12-25' => [
'hours' => [],
'data' => 'Closed for Christmas',
],
],
]);
You can use the separator to to specify multiple days at once, for the week or for exceptions:, (*12)
$openingHours = OpeningHours::create([
'monday to friday' => ['09:00-19:00'],
'saturday to sunday' => [],
'exceptions' => [
// Every year
'12-24 to 12-26' => [
'hours' => [],
'data' => 'Holidays',
],
// Only happening in 2024
'2024-06-25 to 2024-07-01' => [
'hours' => [],
'data' => 'Closed for works',
],
],
]);
The last structure tool is the filter, it allows you to pass closures (or callable function/method reference) that take a date as a parameter and returns the settings for the given date., (*13)
$openingHours = OpeningHours::create([
'monday' => [
'09:00-12:00',
],
'filters' => [
function ($date) {
$year = intval($date->format('Y'));
$easterMonday = new DateTimeImmutable('2018-03-21 +'.(easter_days($year) + 1).'days');
if ($date->format('m-d') === $easterMonday->format('m-d')) {
return []; // Closed on Easter Monday
// Any valid exception-array can be returned here (range of hours, with or without data)
}
// Else the filter does not apply to the given date
},
],
]);
If a callable is found in the "exceptions" property, it will be added automatically to filters so you can mix filters and exceptions both in the exceptions array. The first filter that returns a non-null value will have precedence over the next filters and the filters array has precedence over the filters inside the exceptions array., (*14)
Warning: We will loop on all filters for each date from which we need to retrieve opening hours and can neither predicate nor cache the result (can be a random function) so you must be careful with filters, too many filters or long process inside filters can have a significant impact on the performance., (*15)
It can also return the next open or close DateTime from a given DateTime., (*16)
// The next open datetime is tomorrow morning, because we’re closed on 25th of December.
$nextOpen = $openingHours->nextOpen(new DateTime('2016-12-25 10:00:00')); // 2016-12-26 09:00:00
// The next open datetime is this afternoon, after the lunch break.
$nextOpen = $openingHours->nextOpen(new DateTime('2016-12-24 11:00:00')); // 2016-12-24 13:00:00
// The next close datetime is at noon.
$nextClose = $openingHours->nextClose(new DateTime('2016-12-24 10:00:00')); // 2016-12-24 12:00:00
// The next close datetime is tomorrow at noon, because we’re closed on 25th of December.
$nextClose = $openingHours->nextClose(new DateTime('2016-12-25 15:00:00')); // 2016-12-26 12:00:00
Read the usage section for the full api., (*17)
Spatie is a webdesign agency based in Antwerp, Belgium. You'll find an overview of all our open source projects on our website., (*18)
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall., (*21)
## Usage
The package should only be used through the `OpeningHours` class. There are also three value object classes used throughout, `Time`, which represents a single time, `TimeRange`, which represents a period with a start and an end, and `openingHoursForDay`, which represents a set of `TimeRange`s which can't overlap.
### `Spatie\OpeningHours\OpeningHours`
#### `OpeningHours::create(array $data, $timezone = null, $toutputTimezone = null): Spatie\OpeningHours\OpeningHours`
Static factory method to fill the set of opening hours.
```php
$openingHours = OpeningHours::create([
'monday' => ['09:00-12:00', '13:00-18:00'],
// ...
]);
If no timezone is specified, OpeningHours will just assume you always
pass DateTime objects that have already the timezone matching your schedule., (*24)
If you pass a $timezone as a second argument or via the array-key 'timezone'
(it can be either a DateTimeZone object or a string), then passed dates will
be converted to this timezone at the beginning of each method, then if the method
return a date object (such as nextOpen, nextClose, previousOpen,
previousClose, currentOpenRangeStart or currentOpenRangeEnd), then it's
converted back to original timezone before output so the object can reflect
a moment in user local time while OpeningHours can stick in its own business
timezone., (*25)
Alternatively you can also specify both input and output timezone (using second
and third argument) or using an array:, (*26)
For safety sake, creating OpeningHours object with overlapping ranges will throw an exception unless you pass explicitly 'overflow' => true, in the opening hours array definition. You can also explicitly merge them., (*27)
$ranges = [
'monday' => ['08:00-11:00', '10:00-12:00'],
];
$mergedRanges = OpeningHours::mergeOverlappingRanges($ranges); // Monday becomes ['08:00-12:00']
OpeningHours::create($mergedRanges);
// Or use the following shortcut to create from ranges that possibly overlap:
OpeningHours::createAndMergeOverlappingRanges($ranges);
Not all days are mandatory, if a day is missing, it will be set as closed., (*28)
Returns an array of OpeningHoursForDay objects for a regular week., (*30)
$openingHours->forWeek();
OpeningHours::forWeekCombined(): array
Returns an array of days. Array key is first day with same hours, array values are days that have the same working hours and OpeningHoursForDay object., (*31)
$openingHours->forWeekCombined();
OpeningHours::forWeekConsecutiveDays(): array
Returns an array of concatenated days, adjacent days with the same hours. Array key is first day with same hours, array values are days that have the same working hours and OpeningHoursForDay object., (*32)
Warning: consecutive days are considered from Monday to Sunday without looping (Monday is not consecutive to Sunday) no matter the days order in initial data., (*33)
Returns an OpeningHoursForDay object for a specific date. It looks for an exception on that day, and otherwise it returns the opening hours based on the regular schedule., (*35)
Returns an array of all OpeningHoursForDay objects for exceptions, keyed by a Y-m-d date string., (*36)
$openingHours->exceptions();
OpeningHours::isOpenOn(string $day): bool
Checks if the business is open (contains at least 1 range of open hours) on a day in the regular schedule., (*37)
$openingHours->isOpenOn('saturday');
If the given string is a date, it will check if it's open (contains at least 1 range of open hours) considering
both regular day schedule and possible exceptions., (*38)
$openingHours->isOpenOn('2020-09-03');
$openingHours->isOpenOn('09-03'); // If year is omitted, current year is used instead
OpeningHours::isClosedOn(string $day): bool
Checks if the business is closed on a day in the regular schedule., (*39)
Returns next close DateTime from the given DateTime ($dateTime or from now if this parameter is null or omitted)., (*52)
If a DateTimeImmutable object is passed, a DateTimeImmutable object is returned., (*53)
Set $searchUntil to a date to throw an exception if no closed time can be found before this moment., (*54)
Set $cap to a date so if no closed time can be found before this moment, $cap is returned., (*55)
If the schedule is always open or always closed, there is no state change to found and therefore
nextOpen (but also previousOpen, nextClose and previousClose) will throw a MaximumLimitExceeded
You can catch it and react accordingly or you can use isAlwaysOpen / isAlwaysClosed methods
to anticipate such case., (*56)
Returns a Spatie\OpeningHours\TimeRange instance of the current open range if the
business is open, false if the business is closed., (*71)
$range = $openingHours->currentOpenRange(new DateTime('2016-12-24 11:00:00'));
if ($range) {
echo "It's open since ".$range->start()."\n";
echo "It will close at ".$range->end()."\n";
} else {
echo "It's closed";
}
start() and end() methods return Spatie\OpeningHours\Time instances. Time
instances created from a date can be formatted with date information. This is useful
for ranges overflowing midnight:, (*72)
$period = $openingHours->currentOpenRange(new DateTime('2016-12-24 11:00:00'));
if ($period) {
echo "It's open since ".$period->start()->format('D G\h')."\n";
echo "It will close at ".$period->end()->format('D G\h')."\n";
} else {
echo "It's closed";
}
$openingHours->asStructuredData();
$openingHours->asStructuredData('H:i:s'); // Customize time format, could be 'h:i a', 'G:i', etc.
$openingHours->asStructuredData('H:iP', '-05:00'); // Add a timezone
// Timezone can be numeric or string like "America/Toronto" or a DateTimeZone instance
// But be careful, the time is arbitrary applied on 1970-01-01, so it does not handle daylight
// saving time, meaning Europe/Paris is always +01:00 even in summer time.
Spatie\OpeningHours\OpeningHoursForDay
This class is meant as read-only. It implements ArrayAccess, Countable and IteratorAggregate so you can process the list of TimeRanges in an array-like way., (*80)
Spatie\OpeningHours\TimeRange
Value object describing a period with a start and an end time. Can be cast to a string in a H:i-H:i format., (*81)
Spatie\OpeningHours\Time
Value object describing a single time. Can be cast to a string in a H:i format., (*82)
If you've found a bug regarding security please mail security@spatie.be instead of using the issue tracker., (*87)
Postcardware
You're free to use this package, but if it makes it to your production environment we highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using., (*88)
Our address is: Spatie, Kruikstraat 22, 2018 Antwerp, Belgium., (*89)