1. Go to this page and download the library: Download irfa/php-hari-libur 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/ */
HariLibur::date("17-08-2021")->nextHoliday();
// mengambil data hari libur setelah tanggal 17-03-2021
HariLibur::date("17-08-2021")->prevHoliday();
// mengambil data hari libur setelah tanggal 17-03-2021
$date = HariLibur::date("17-08-2021");
//mengambil data hari libur sebelum tangal 17-08-2021
foreach ($date->nextHoliday() as $hariLibur) {
echo "Tanggal: ".$hariLibur->date." Deskripsi: ".$hariLibur->description."<br>";
}
//mengambil data hari libur sesudah tangal 17-08-2021
foreach ($date->prevHoliday() as $hariLibur) {
echo "Tanggal: ".$hariLibur->date." Deskripsi: ".$hariLibur->description."<br>";
}