Download the PHP package peace2643/indonesian-holidays without Composer
On this page you can find all versions of the php package peace2643/indonesian-holidays. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download peace2643/indonesian-holidays
More information about peace2643/indonesian-holidays
Files in peace2643/indonesian-holidays
Download peace2643/indonesian-holidays
More information about peace2643/indonesian-holidays
Files in peace2643/indonesian-holidays
Vendor peace2643
Package indonesian-holidays
Short Description Simple package to check Indonesian public holidays
License MIT
Homepage https://github.com/peace2643/indonesian-holidays
Package indonesian-holidays
Short Description Simple package to check Indonesian public holidays
License MIT
Homepage https://github.com/peace2643/indonesian-holidays
Please rate this library. Is it a good library?
Informations about the package indonesian-holidays
Indonesian Holidays
Simple package to check Indonesian public holidays.
Credit
Data is sourced from the awesome web at tanggalans.id. Terima kasih!
License
MIT License
Installation
composer require peace2643/indonesian-holidays
Usage
// Check if tomorrow is a holiday
$tomorrow = $holidays->isTomorrow();
if ($tomorrow) {
echo "Tomorrow is: " . $tomorrow;
}
// Get all holidays this month
$thisMonth = $holidays->isThisMonth();
print_r($thisMonth);
// Get next holiday
$next = $holidays->getNext();
if ($next) {
echo "Next holiday: " . $next['name'] . " on " . $next['date'];
}
Available Methods
isToday() - Check if today is a holiday
isYesterday() - Check if yesterday was a holiday
isTomorrow() - Check if tomorrow is a holiday
isHoliday($date) - Check specific date
isThisMonth() - Get all holidays this month
isThisYear() - Get all holidays this year
getAllHolidays() - Get all holidays
getNext() - Get next upcoming holidayAll versions of indonesian-holidays with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.4
The package peace2643/indonesian-holidays contains the following files
Loading the files please wait ...