date_default_timezone_get() = UTC => UTC => UTC
date('Y-m-d h:i:s a') = 2025-11-22 11:12:36 am
1763809956
1610442000
string(4) "TRUE"
TRUE
Is 2025-11-22 11:12:36 am > 2021-01-12 09:00:00 am? TRUE
1763809956
1610442000
date_default_timezone_get() = America/New_York => America/New_York => EST
date('Y-m-d h:i:s a') = 2025-11-22 06:12:36 am
strtotime("now") = 1763809956
strtotime("01/28/2021 5AM") = 1611828000
Is 2025-11-22 06:12:36 am (1763809956) > 2021-01-28 05:00:00 am (1611828000)? TRUE
$test = TRUE
var_dump($test) = string(4) "TRUE"
Is 2025-11-22 5 AM > 1969-12-31? Yes
Is 2025-11-22T06:12:36-05:00 > 1969-12-31T19:00:00-05:00 + 24 hours? Yes.
strtotime('now') = 1763809956
strtotime('today') = 1763787600
$todaydate = date('Y-m-d',strtotime('today')) = 2025-11-22
strtotime($todaydate) = 1763787600
Is the time right now (06:12:36 am, 1763809956) > 5 AM (1763805600)? TRUE
Is the date on the calendar data file (1969-12-31, -68400) < today (2025-11-22, 1763787600)? TRUE
Run Update