up vote 125 down vote favorite
54
share [g+] share [fb]

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?

link|improve this question

47% accept rate
18  
UNLUCKY QUESTION NUMBER BRO – Tom Gullen Mar 3 '11 at 16:59
2  
You might consider making John Isaacks's the correct answer... His solution is a lot simpler, to put it lightly. – catphive Apr 8 '11 at 20:49
feedback

17 Answers

up vote 12 down vote accepted

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|improve this answer
7  
ah this sux. :( – Matt Joiner Feb 18 '10 at 15:31
Care to explain further? – Unkwntech Feb 19 '10 at 4:45
2  
The worst answer with high votes I've yet to see on SO. How hard is it to format JS correctly? – Marc-André Lafortune Apr 28 '10 at 14:27
17  
This should not be the approved answer. – simianarmy May 13 '10 at 19:53
3  
Horrific to document.write after load and then document.write a META reload tag instead of just redirect using script! – mplungjan Jul 30 '10 at 13:05
show 3 more comments
feedback

The most popular (==standard?) way of determining the time zone I've seen around is simply asking the user herself. 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 aleck. It's just that sometimes some problems have finer solutions outside of any programming context.

link|improve this answer
11  
+1 - Definitely, if you care and it matters to your app's functionality, ask the user. – DarkSquid Sep 1 '09 at 21:37
What about when a user is downloading an .ics file that should have a start time specific to their location (e.g. 9-11am across the country)? They shouldn't HAVE to say what their time zone is imo. – Marcy Sutton Jan 27 '11 at 21:57
Why not accept this as the correct answer? The answer given by Unkwntech even not work for non-IE browsers. – Xie Jilei Feb 18 '11 at 1:33
2  
@Ishmaeel: but users do travel internationally and they shouldnt need to tell their timezone each time they login from some non-native timezone – user Jul 22 '11 at 8:04
3  
Personally, if I traveled that much and the timestamps in my webapp were mission critical, I wouldn't trust the webapp to guess my current timezone via JS/ActiveX gimmicks. I would tell the webapp to display the timestamps in UTC/GMT. I also wouldn't be changing the timezone settings on my laptop each time I got off the plane, so the webapp would not have a chance to guess correctly anyway. – Ishmaeel Jul 26 '11 at 13:02
show 1 more comment
feedback
-new Date().getTimezoneOffset()/60;

getTimezoneOffset() will subtract your time from GMT and return the number of minutes. So if you live in GMT-8, it will return 480. To put this into hours, divide by 60. Also, notice that the sign is the opposite of what you need -- it's calculating GMT's offset from your time zone, not your time zone's offset from GMT. To fix this, simply multiply by -1.

link|improve this answer
this is what makes the most sense to me. is there any reason this shouldn't be used or is everyone above just making the problem more difficult than they need to. – jordanstephens Jun 28 '10 at 19:54
@jordanstephens I am not an expert so I do not know if there are circumstances where this would not work, but it worked fine for me. – John Isaacks Jun 28 '10 at 20:00
1  
What about users who use cell phones that have browsers without javascript support? I like the question, the user asks about HTTP headers, user agent... is there a way to make this work server side, as accurate as possible? – Nischal Sep 9 '11 at 14:57
That's strange. For me this returns -4 but I'm in GET which ought to be +4 - what am I missing? I've checked that my OS is set to the correct timezone. – hippietrail Jan 17 at 14:12
getTimezoneOffset() returns number of minutes when you subtract your current time from GMT time. So if you live in California, that's PST, which is GMT-8, so you're 8 hours behind. Subtract that from GMT using getTimezoneOffset(), and it will return 480 minutes. If you want to find your offset, multiply that by -1 and divide by 60. – NudeCanalTroll 19 hours ago
feedback

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|improve this answer
I have voted this answer up because the latitude and longitude obtained from databases like GeoIP (which has a free version available as of now) can be combined with databases that convert such a coordinate to a time zone. I think GeoNames has a latter such database. – Peter O. Nov 20 '11 at 6:52
See also this question. – Peter O. Dec 1 '11 at 7:11
feedback

Ask the user.

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

link|improve this answer
19  
Then the user probably doesn't care? – agnoster Nov 11 '10 at 8:48
feedback

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|improve this answer
feedback

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://stackoverflow.com/questions/1033/ip-to-country

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

link|improve this answer
Dead link, the new version is stackoverflow.com/questions/1033/ip-to-country – El Yobo Jun 7 '10 at 5:46
I just went to that website and it was totally wrong :-/ – Adam Lassek Aug 25 '10 at 2:46
feedback

Using Unkwntech's approach, I wrote a function using jQuery and PHP. This is tested, and does work!

On the PHP page where you are want to have the timezone as a variable, have this snippet of code somewhere near the top of the page:

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

This will read the session variable "time", which we are now about to create.

On the same page, in the , you need to first of all include jQuery:

<script type="text/javascript" src="http://code.jquery.com/jquery-latest.min.js"></script>

Also in the , below the jQuery, paste this:

<script type="text/javascript">
    $(document).ready(function() {
        if("<?php echo $timezone; ?>".length==0){
            var visitortime = new Date();
            var visitortimezone = "GMT " + -visitortime.getTimezoneOffset()/60;
            $.ajax({
                type: "GET",
                url: "http://domain.com/timezone.php",
                data: 'time='+ visitortimezone,
                success: function(){
                    location.reload();
                }
            });
        }
    });
</script>

You may or may not have noticed, but you need to change the url to your actual domain.

One last thing. You are probably wondering what the heck timezone.php is. Well, it is simply this: (create a new file called timezone.php and point to it with the above url)

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

If this works correctly, it will first load the page, execute the JavaScript, and reload the page. You will then be able to read the $timezone variable and use it to your pleasure! It returns the current UTC/GMT time zone offset (GMT -7) or whatever timezone you are in.

link|improve this answer
i do like this, but i might have something that checks the current $_SESSION['time'] and only get the javascript to reload if its different – Christopher Chase Sep 15 '11 at 4:59
not work for me :< – Ajay Patel Jan 11 at 11:44
feedback

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|improve this answer
feedback

I determine timezone with Geolocation and using the Geonames APIs.

link|improve this answer
feedback

Here is an article (with source code) that explains how to determine and use localized time in an ASP.NET (VB.NET, C#) application:

It's About Time

In short, the described approach relies on the JavaScript getTimezoneOffset function, which returns the value that is saved in the session cookie and used by code-behind to adjust time values between GMT and local time. The nice thing is that the user does not need to specify the time zone (the code does it automatically). There is more involved (this is why I link to the article), but provided code makes it really easy to use. I suspect that you can convert the logic to PHP and other languages (as long as you understand ASP.NET).

link|improve this answer
feedback

With PHP date function you will get the date time of server on which site is located. The only way to get user time is to use JavaScript.

But I suggest you to, if your site have registration required then best way is to ask user while registration as compulsory field. You can list various time zones in register page and save that in database. After this if user login to site then you can set default time zone for that session as per users’ selected time zone. You can set any specific time zone using PHP function date_default_timezone_set. This set the specified time zone for users.

Basically users’ time zone is goes to client side, so we must use JavaScript for this.

Below is the script to get users’ time zone using PHP and JavaScript.

<?php
#http://www.php.net/manual/en/timezones.php List of Time Zones
function showclienttime()
{
if(!isset($_COOKIE['GMT_bias']))
{
?>
<script type="text/javascript">
var Cookies = {};
Cookies.create = function (name, value, days) {
if (days) {
var date = new Date();
date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
var expires = "; expires=" + date.toGMTString();
} else {
var expires = "";
}
document.cookie = name + "=" + value + expires + "; path=/";
this[name] = value;
}
var now = new Date();
Cookies.create("GMT_bias",now.getTimezoneOffset(),1);
window.location = "<?php echo $_SERVER['PHP_SELF'];?>";
</script>
<?php
} else {
$fct_clientbias = $_COOKIE['GMT_bias'];
}
$fct_servertimedata = gettimeofday();
$fct_servertime = $fct_servertimedata['sec'];
$fct_serverbias = $fct_servertimedata['minuteswest'];
$fct_totalbias = $fct_serverbias – $fct_clientbias;
$fct_totalbias = $fct_totalbias * 60;
$fct_clienttimestamp = $fct_servertime + $fct_totalbias;
$fct_time = time();
$fct_year = strftime("%Y", $fct_clienttimestamp);
$fct_month = strftime("%B", $fct_clienttimestamp);
$fct_day = strftime("%d", $fct_clienttimestamp);
$fct_hour = strftime("%I", $fct_clienttimestamp);
$fct_minute = strftime("%M", $fct_clienttimestamp);
$fct_second = strftime("%S", $fct_clienttimestamp);
$fct_am_pm = strftime("%p", $fct_clienttimestamp);
echo $fct_day.", ".$fct_month." ".$fct_year." ( ".$fct_hour.":".$fct_minute.":".$fct_second." ".$fct_am_pm." )";
}
showclienttime();
?>

But as per my point of view, it’s better to ask to the users if registration is mandatory in your project.

link|improve this answer
feedback

Here is a more complete way. (1) Get the timezone offset for the user (2) Test some days on DLS boundaries to determine if they are in a zone that uses DLS.

Getting TZ and DST from JS

link|improve this answer
feedback

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|improve this answer
feedback

javascript:

function maketimus(timestampz)
{
    var linktime = new Date(timestampz * 1000);
    var linkday = linktime.getDate();
    var freakingmonths=new Array();
    freakingmonths[0]="jan";
    freakingmonths[1]="feb";
    freakingmonths[2]="mar";
    freakingmonths[3]="apr";
    freakingmonths[4]="may";
    freakingmonths[5]="jun";
    freakingmonths[6]="jul";
    freakingmonths[7]="aug";
    freakingmonths[8]="sep";
    freakingmonths[9]="oct";
    freakingmonths[10]="nov";
    freakingmonths[11]="dec";
    var linkmonthnum = linktime.getMonth();
    var linkmonth = freakingmonths[linkmonthnum];
    var linkyear = linktime.getFullYear();
    var linkhour = linktime.getHours();
    var linkminute = linktime.getMinutes();
    if (linkminute < 10)
    {linkminute = "0" + linkminute;}
    var fomratedtime = linkday + linkmonth + linkyear + " " + linkhour + ":" + linkminute + "h";
    return fomratedtime;
}    

simply provide your times in UNIX Timestamp format to this function, javascript already knows the timezone of the user.

like this:

php:

echo '<script type="text/javascript">
var eltimio = maketimus('.$unix_timestamp_ofshiz.');
document.write(eltimio);
</script><noscript>pls enable javascript</noscript>';

this will always show the times correctly based on the timezone the person has set on his computer clock, no need to ask anything to anyone and save it into places thank god!

link|improve this answer
feedback

a simple way to do it is by using:

new Date().getTimezoneOffset();
link|improve this answer
Why did you repost an identical answer (by John Isaacks) from 2 years ago: stackoverflow.com/a/1809974/836407 ? – chown 18 hours ago
feedback

Here's how I do it. This will set the PHP default timezone to the user's local timezone. Just paste the following on the top of all your pages:

<?php
session_start();
if(!isset($_SESSION['timezone']))
{
    if(!isset($_REQUEST['offset']))
    {
    ?>
        <script>
        var d = new Date()
        var offset= -d.getTimezoneOffset()/60;
        location.href = "<?php echo $_SERVER['PHP_SELF']; ?>?offset="+offset;
        </script>
        <?php   
    }
    else
    {
        $zonelist = array('Kwajalein' => -12.00, 'Pacific/Midway' => -11.00, 'Pacific/Honolulu' => -10.00, 'America/Anchorage' => -9.00, 'America/Los_Angeles' => -8.00, 'America/Denver' => -7.00, 'America/Tegucigalpa' => -6.00, 'America/New_York' => -5.00, 'America/Caracas' => -4.30, 'America/Halifax' => -4.00, 'America/St_Johns' => -3.30, 'America/Argentina/Buenos_Aires' => -3.00, 'America/Sao_Paulo' => -3.00, 'Atlantic/South_Georgia' => -2.00, 'Atlantic/Azores' => -1.00, 'Europe/Dublin' => 0, 'Europe/Belgrade' => 1.00, 'Europe/Minsk' => 2.00, 'Asia/Kuwait' => 3.00, 'Asia/Tehran' => 3.30, 'Asia/Muscat' => 4.00, 'Asia/Yekaterinburg' => 5.00, 'Asia/Kolkata' => 5.30, 'Asia/Katmandu' => 5.45, 'Asia/Dhaka' => 6.00, 'Asia/Rangoon' => 6.30, 'Asia/Krasnoyarsk' => 7.00, 'Asia/Brunei' => 8.00, 'Asia/Seoul' => 9.00, 'Australia/Darwin' => 9.30, 'Australia/Canberra' => 10.00, 'Asia/Magadan' => 11.00, 'Pacific/Fiji' => 12.00, 'Pacific/Tongatapu' => 13.00);
        $index = array_keys($zonelist, $_REQUEST['offset']);
        $_SESSION['timezone'] = $index[0];
    }
}
date_default_timezone_set($_SESSION['timezone']);

//rest of your code goes here
?>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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