I am doing an IP lookup to determine a "best guess" for timezone offset from UTC and the country/region information.
So, for instance, I have offset -3 and country Brazil.
I want to show BRT instead of a random timezone in that same offset, i.e. ART
Is there some built-in way in PHP to be able to set the appropriate timezone with this information?
If not, what would be the easiest way to do this? (Assume that I can't make any outside API calls)
If I do my own database table, how do I ensure it stays up to date?
Thanks!