How to calculate eastern time using Javascript Date object? - Stack Overflow

admin2025-04-03  1

I'm working on a personal project involving Javascript, and as part of that project, I want to grab the current date (including time) and display it accordingly. No big deal right? Well, the deal is that I want to return the time & date in Eastern Daylight TIme, no matter where in the world the IP is.

If this is not possible, what alternative methods do you suggest? Does php have this functionality? I could write a simple php script that takes a date and converts it, but I want to keep this in JS if at all possible.

I'm trying to think through the best way to do this, but I'd appreciate any help that you could offer.

Thanks!

I'm working on a personal project involving Javascript, and as part of that project, I want to grab the current date (including time) and display it accordingly. No big deal right? Well, the deal is that I want to return the time & date in Eastern Daylight TIme, no matter where in the world the IP is.

If this is not possible, what alternative methods do you suggest? Does php have this functionality? I could write a simple php script that takes a date and converts it, but I want to keep this in JS if at all possible.

I'm trying to think through the best way to do this, but I'd appreciate any help that you could offer.

Thanks!

Share Improve this question edited Jun 10, 2014 at 0:44 Matt Johnson-Pint 242k75 gold badges465 silver badges610 bronze badges asked Nov 4, 2010 at 17:08 AlexAlex 66.1k49 gold badges153 silver badges181 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 7

I found this on the internet, and there are a lot more of these scripts:

function calcTime(offset) {

    // create Date object for current location
    d = new Date();

    // convert to msec
    // add local time zone offset 
    // get UTC time in msec
    utc = d.getTime() + (d.getTimezoneOffset() * 60000);

    return new Date(utc + (3600000*offset));

}

So, you get the current time, add the offset of the current location to get UTC time and then you return a new date where you add the offset of a certain time zone again.

JavaScript native Date objects only know two timezones, UTC and the user's locale timezone (and even then, the amount of information you can extract about the locale timezone is limited). You could work in UTC and subtract 4 hours to get EDT, but do you really always want EDT and not EST?

If you want to do timezone conversions between arbitrary regions in PHP you'll need to drag in a large library with its own timezone information, such as TimezoneJS.

It may be better to keep the JavaScript stuff all in UTC, and let the PHP side worry about formatting it for a particular locale/timezone, using eg the timezone stuff from Date/Time.

Checking if a given date is on the Easter days. If no date is given the current Date is used.

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743625881a213775.html

最新回复(0)