Callsign on Cue
No station currently on cue.
Up Next
No stations waiting.
function wp4vw_utc_time($value) { $value = trim((string)$value); if ($value === '') return ''; try { $dt = new DateTime($value); $dt->setTimezone(new DateTimeZone('UTC')); return $dt->format('H:i') . ' UTC'; } catch (Exception $e) { return gmdate('H:i') . ' UTC'; } }