timezone_name_from_abbr() not recognizing correctly

后端 未结 1 812
庸人自扰
庸人自扰 2021-01-24 05:00

Basically my website is worldwide and I need to be able to detect users\' time zones and display accurate times. I have this really neat script which used to work flawlessly we

1条回答
  •  囚心锁ツ
    2021-01-24 05:32

    In general, the idea of locating an exact time zone (such as Europe/Helsinki or Europe/Paris) based solely on an offset (such as UTC+02:00) is not possible with any sort of reliability or accuracy. Many time zones share the same offset at any given point in time, and many time zones switch between two different offsets throughout the year due to daylight saving time rules.

    You can see a list of all of the time zones, and their standard and daylight offsets here.

    Even the idea of going from a time zone abbreviation to a time zone is not sound, as several time zones could share the same abbreviation. For example, "CST" could be "Central Standard Time" (USA), "Central Standard Time" (Australia), "Central Summer Time" (Australia), "China Standard Time", or "Cuba Standard Time". See this list for details.

    Given these concerns, it is rather strange that PHP would give you a function called timezone_name_from_abbr. I recommend avoiding using it, as it is clearly conceptually flawed.

    If you're after detection of the user's time zone, consider using the JavaScript library jsTimeZoneDetect. It is not perfect either, but it works in general, and is based on a more logical algorithm.

    0 讨论(0)
提交回复
热议问题