vote up 35 vote down star
13

Is there a standard way for a web server to determine what time zone offset a user is in?
From an HTTP header or part of the user-agent description, perhaps?

flag

29% accept rate

11 Answers

vote up 14 vote down check

timezone.js:

function ajaxpage(){
    var url = "timezone.php";
var visitortime = new Date();
vat time = visitortime.getTimezoneOffset()/60;
var page_request = false
if (window.XMLHttpRequest)
page_request = new XMLHttpRequest()
else if (window.ActiveXObject){ 
	try {
page_request = new ActiveXObject("Msxml2.XMLHTTP") } 
catch (e){
	try{
page_request = new ActiveXObject("Microsoft.XMLHTTP") }
catch (e){}}}
else
return false
page_request.onreadystatechange=function(){
	loadpage(page_request, containerid) }

if (bustcachevar)
bustcacheparameter=(url.indexOf("?")!=-1)? "&"+new Date().getTime() : "?"+new Date().getTime()
page_request.open('GET', url+bustcacheparameter+"&time="+time, true)
page_request.send(null) }


function loadpage(page_request, containerid){
    if (page_request.readyState == 4 && (page_request.status==200 || window.location.href.indexOf("http")==-1))
    document.write('<meta http-equiv="refresh" content="0;url=http://example.com/"/>'); }


timezone.php:

<?php
session_start();
$_SESSION['time'] = $_GET['time'];
?>


When you want to use it add onLoad="ajaxpage();" to the body tag and it should cause the timezone to be stored in the PHP session variable $_SESSION['time']

Edit: P.S. This is untested.

link|flag
vote up 20 vote down

The most popular (==standard?) way of determining the time zone I've seen around is simply asking the user ximself. If your website requires subscription, this could be saved in the users' profile data. For anon users, the dates could be displayed as UTC or GMT or some such.

I'm not trying to be a smart-alec. It's just that sometimes some problems have finer solutions outside of any programming context.

link|flag
2  
+1 - Definitely, if you care and it matters to your app's functionality, ask the user. – DarkSquid Sep 1 at 21:37
vote up 7 vote down

Javascript is the easiest way to get the client's local time. I would suggest using an XMLHttpRequest to send back the local time, and if that fails, fall back to the timezone detected based on their IP address.

As far as geolocation, I've used MaxMind GeoIP on several projects and it works well, though I'm not sure if they provide timezone data. It's a service you pay for and they provide monthly updates to your database. They provide wrappers in several web languages.

link|flag
vote up 2 vote down

Anyone know of any services that will match IP to geographic location

Well, lucky for you that answer can be found on our very own stackoverflow website: http://beta.stackoverflow.com/questions/1033/ip-to-country

spoiler: http://www.hostip.info/use.html

link|flag
vote up 1 vote down

There are no HTTP headers that will report the clients timezone so far although it has been suggested to include it in the HTTP specification.

If it was me, I would probably try to fetch the timezone using clientside JavaScript and then submit it to the server using Ajax or something.

link|flag
vote up 1 vote down

The magic all seems to be in

visitortime.getTimezoneOffset()

That's cool, I didn't know about that. Does it work in IE, etc? From there you should be able to use JS to ajax, set cookies, whatever. I'd probably go the cookie route myself.

You'll need to allow the user to change it though. We tried to use geolocation (via maxmind) to do this a while ago, and it was wrong reasonably often - enough to make it not worth doing, so we just let the user set it in their profile, and show a notice to users who haven't set theirs yet.

link|flag
vote up 1 vote down

I determine timezone with Geolocation and using the Geonames APIs.

link|flag
vote up 0 vote down

If you happen to be using OpenID for authentication, Simple Registration Extension would solve the problem for authenticated users (You'll need to convert from tz to numeric).

Another option would be to infer the time zone from the user agent's country preference. This is a somewhat crude method (won't work for en-US), but makes a good approximation.

link|flag
vote up 0 vote down

Ask the user.

If you get the time zone from the user's computer, and it is set wrong, then what?

link|flag
vote up 0 vote down

new Date().getTimezoneOffset()/60;

link|flag
vote up -1 vote down

I would think that you could get an approximate idea from their IP address. Anyone know of any services that will match IP to geographic location, or a periodically updated database?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.