I'm trying to get the minutes until 00:00:00
(until the day changes) but in Chicago timezone. I set my timezone to chicago (temporarly) then reset it to my original. There thing I am currently struggling with is getting the amount of minutes until the day changes. I need the minutes as I am trying to set a cookie that will expire as soon as it turns tomorrow.
$oldTimezone = date_default_timezone_get();
date_default_timezone_set('America/Chicago');
// TODO: Get the minutes while Chicago is active.
date_default_timezone_set($oldTimezone);