Automatically detect user's current local time with JavaScript or PHP

With JavaScript, there is a way to get the users current timezone offset.

new Date().getTimezoneOffset() * -1

returns the offset in minutes from GMT. Do not store this value as it can change depending on Daylight Saving Time. If you need it on the server (php) then you'll need to capture it in send it.

Unfortunately, the HTTP spec doesn't send the users timezone as a header, which is what php would need.


In short no.

I would suggest using server side time, and have the ability for the user to choose their time zone.

You could possibly calculate default time zones for users based on heuristics around their IP address, but this is open to error.

You should be able to extract client side time zone information through javascript / Ajax, but as with the time itself this is also open to error.

My recommendation: Let users choose their time zone with a sensible default based on where you expect your users to be.


I would suggest you write the server date out to javascript. Then do a new date in javascript to get date set by user on their machine. Use the different in the two dates.

With the server date you are sure that your time is unbiased. All calculations must be done using server date.

User the difference only for display purposes. This would work well for edit logs, countdowns and selecting messages like "Good morning".

If a user wants his time to be something else... I think you should let him have that.


PHP has both a PECL extension and a PEAR package that can do GeoIP lookups. Assuming the user isn't behind a proxy or NAT of some kind, the database is up-to-date and accurate, and the address is in the database at all, you could get the timezone, and calculate the offset from the server time.

Or, you could just accept that the user's system clock is not 100% accurate, but it's usually very close. All major operating systems have some way of syncing their clocks with network time servers, most of these are turned on be default. If the person has decided to put their computer in the "wrong" time zone, it's probably for a reason (they're traveling, they work with people in another time zone).

If the user has for some reason set their clock to be 10 minutes off, they accept the consequences of time calculations being inaccurate.


Added: If your server clock is accurate (if not, like HermanD said, fix it if you control the server, complain if you don't) but is not in the right timezone, you can always use PHP ini_set() or date_default_timezone_set() to force your scripts to operate in GMT, regardless of system time zone.