<?php
//default time zone
date_default_timezone_set("Asia/Jakarta");
//fungsi check tanggal merah
function tanggalMerah($value)
{
    $array = json_decode(file_get_contents("https://[Log in to view URL]"), true);
    if (isset($array[$value])) {
        echo "tanggal merah " . $array[$value]["deskripsi"];
    } else if (
        date("D", strtotime($value)) === "Sun") {
        echo "tanggal merah hari minggu";
    } else {
        echo "bukan tanggal merah";
    }
}

//testing
$hari_ini = "20210810";


tanggalMerah($hari_ini);

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: