PHP code example of ixnode / php-public-holiday
1. Go to this page and download the library: Download ixnode/php-public-holiday 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/ */
ixnode / php-public-holiday example snippets
use Ixnode\PhpPublicHoliday\PublicHoliday;
$year = 2024;
$country = 'DE';
$state = 'SN';
$locale = 'de';
$holiday = new PublicHoliday(year: $year, countryCode: $country, stateCode: $state, localeCode: $locale);
print_r($holiday->getHolidays());
// (array) [Ixnode\PhpPublicHoliday\PublicHolidayItem Object, ...]
// - (DateTimeImmutable) ->getDate()
// - (string) ->getName()
bash
composer
bash
vendor/bin/php-public-holiday -V
bash
php-public-holiday 1.0.0 (2024-11-23 15:08:05) - Björn Hempel <[email protected] >
bash
vendor/bin/php-public-holiday ph DE SN --year=2024
bash
Year: 2024
Country: DE (Deutschland)
State: SN (Sachsen)
Locale: de (Deutsch)
- 2024-01-01: Neujahr
- 2024-03-29: Karfreitag
- 2024-03-31: Ostersonntag
- 2024-04-01: Ostermontag
- 2024-05-01: Tag der Arbeit
- 2024-05-09: Christi Himmelfahrt
- 2024-05-19: Pfingstsonntag
- 2024-05-20: Pfingstmontag
- 2024-05-30: Fronleichnam
- 2024-10-03: Tag der deutschen Einheit
- 2024-10-31: Reformationstag
- 2024-11-20: Buß- und Bettag
- 2024-12-25: Erster Weihnachtsfeiertag
- 2024-12-26: Zweiter Weihnachtsfeiertag
bash
vendor/bin/php-public-holiday ph DE SN --year=2025 --locale=en --format=text
bash
vendor/bin/php-public-holiday ph AT K --year=2025 --locale=sv --format=text
bash
vendor/bin/php-public-holiday ph DE SN --year=2025 --format=json
bash
vendor/bin/php-public-holiday ph DE SN --year=2025 --format=csv
csv
date;"public holiday"
2025-01-01;Neujahr
2025-04-18;Karfreitag
...
bash
git clone [email protected] :ixnode/php-public-holiday.git && cd php-public-holiday