PHP code example of peace2643 / indonesian-holidays
1. Go to this page and download the library: Download peace2643/indonesian-holidays 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/ */
peace2643 / indonesian-holidays example snippets
use peace2643\IndonesianHolidays\IndonesianHolidays;
$holidays = new IndonesianHolidays();
// Check if today is a holiday
$today = $holidays->isToday();
if ($today) {
echo "Today is: " . $today;
} else {
echo "Today is not a holiday";