Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to get time zone through IP Address in PHP. Actually i have an application which will run at the client machine. I have IP address of client machine. But not able to get the time zone for each client machine.

share|improve this question

5 Answers

Get a fleet of trucks and drive around the world logging everyone's wireless router's ip address and the current GPS co-ordinate.

That's what Google did. I am not kidding.

share|improve this answer
2  
is this a practical answer for this question? – footy Oct 17 '11 at 13:10
4  
depends on your company i guess :) – Neil McGuigan Oct 17 '11 at 16:55
Source? I find this really interesting. – asperous.us Jun 4 '12 at 1:20
I'm not sure if it's in the article, but a hacker, who worked on the streatview car added this system for himself, to get this database. Google discovered it later on, it was a secret for them too. – Tim Visee Mar 1 at 15:18
show 1 more comment

IP address can't even be relied upon to map to a country; you're treading on thin ice if you also want to get timezone. You're better off to have the client send you the time zone, perhaps in a header.

See Tor: anonymity online for yet another reason to stop using IP addresses for things they were not designed for.

share|improve this answer
2  
Often though you might be providing the user with "best guess" auto completed form fields in which case there's absolutely nothing wrong with this. – John Hunt May 8 '12 at 19:15
Nothing wrong with what? – John Saunders May 8 '12 at 19:17

There's no absolutely certain way to get the client's timezone, but if you have the client submit the date and time from their machine, you can compute it based on what the time it is relative to GMT. So, if it's 7:00pm on their machine and it's 12:00am GMT, then you can determine they are -5 from GMT or (EST/DST)

share|improve this answer
2  
Timezones are quite difficult, as most internationalization problems are. If you know their current time AND if they are on daylight saving or not, then you can determine their timezone. Figuring out the daylight saying is however, very difficult (again) – Jacco Apr 13 '09 at 15:22

If you're running it on the local machine, you can check the configured timezone.
http://www.php.net/manual/en/function.date-default-timezone-get.php

There are a lot better and more reliable methods then trying to guess timezone using GeoIP. If you're feeling lucky, try: http://www.php.net/manual/en/book.geoip.php

$region = geoip_region_by_name('www.example.com');
$tz = geoip_time_zone_by_country_and_region($region['country_code'],
                                            $region['region']);
share|improve this answer
The application is running on the local machine, but i want to get time zone through IP on the server side, not on local machine. – Devesh M Apr 13 '09 at 10:13
I would love to have a local copy the GeoIP timezone data. – Jacco Apr 13 '09 at 15:19

If what you need to know is the timezone of users browsing your webpage, then you can use some service like IP2LOCATION to guess the timezone. Keep in mind though, as altCognito said, this is not a 100% accurate way of telling client's timezone. There are some problems accuracy problems with this approach.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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