I'm working on a project that has a lot of different timezone options, and all I have from the users is their UTC offset.
After weeks of doing tweaks, I come to new issues every time I add something, one would think it would be a lot easier to just get the correct time and day :)
The latest issue is that when I try to rewrite a date to a better fomat, it disregards the GMT offset. Like this:
4/14/19, 12:00 PM GMT+2 (=$date) becomes ... 14-04-2019 10:00 when using this code:
$bp_date_to_format = date_create_from_format('Y-m-d\TH:i:sP', $date);
echo date_format($bp_date_to_format, 'd-m-Y H:i');
I figured it would just rewrite the format, keeping the exact time. It isn't.
We do have all these sorts of localization functions as well, but because there doesn't seem to be one single standard (each 3rd party API connection we have uses its own default datetime format so it seems).
// Remove UTC Text
$UTC_offset = str_replace('UTC', '', $timezone);
// Get Offset in Minutes
if (stripos($UTC_offset, ':') !== false) {
// Calculate seconds from offset
list($hours, $minutes) = explode(':', $offset);
$seconds = $hours * 60 * 60 + $minutes * 60;
} else {
$seconds = $UTC_offset * 60 * 60;
}
// Get User timezone name from seconds
$timezone = timezone_name_from_abbr('', $seconds, 1);
if ($timezone === false) {
$timezone = timezone_name_from_abbr('', $seconds, 0);
}
// Set new TZ
return date_default_timezone_set($timezone);
Isn't there any "one way"solution that can be used? It's confusing to say the least.
Cheers.