how do I get the string representation of the users timezone using javascript?

旧时模样 提交于 2019-12-24 07:03:57

问题


I want to output the users system timezone, e.g. "EST". How can I do that, preferably using Javascript, though I could do it on the PHP side as well, if that's significantly easier.


回答1:


You will have to use Javascript - since you do not know the client timezone on the server side. You could use the code below and extract the relevant timezone string from localtime.

var now = new Date();
localtime = now.toTimeString();

which will return something like "12:21:44 GMT-0400 (EDT)"




回答2:


Javascript has a Date.getTimezoneOffset function which will give you the difference in minutes between the GMT and the local timezone. To get from that to the actual offset, you could say:

var offset = Date.getTimezoneOffset / 60 * -1

The * -1 is needed because the offset will be opposite what you expect (for instance, EST, which is GMT -5, would result in 300, because GMT is 300 minutes ahead).

From there, you will need to convert the offset to the description of the offset. There is no built in way in Javascript to do so. You could consider creating a lookup array, but then there would be the issue that there are multiple names for the same offset (for instance, GMT - 5 could be EST (Eastern Standard Time) or CDT (Central Daylight Time).

See Wikipedia for a list of timezones.



来源:https://stackoverflow.com/questions/987537/how-do-i-get-the-string-representation-of-the-users-timezone-using-javascript

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!