Possible Duplicate:
How can I determine a web user's time zone?
Which is the best way to do this ? php or javascript.Can someone provide me with some snippets ? thanks.
Which is the best way to do this ? php or javascript.Can someone provide me with some snippets ? thanks.
| ||||
|
feedback
|
This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.
|
This will get you the timezone as a PHP variable. 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:
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:
Also in the , below the jQuery, paste this:
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)
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. You can read more about this on my blog Cheers
| |||||
|
feedback
|
|
You can't get the user time, let alone timezone through PHP, since that is a server side technology. You need to use javascript - in particular, the
You can use this variable and place it in a form field to process in PHP on form submit. | |||
|
feedback
|
|
Just as Oded has answered. You need to have this sort of detection functionality in javascript. I've struggled with this myself and realized that the offset is not enough. It does not give you any information about daylight saving for example. I ended up writing some code to map to zoneinfo database keys. By checking several dates around a year you can more accurately determine a timezone. Try the script here: http://jsfiddle.net/pellepim/CsNcf/ Simply change your system timezone and click run to test it. If you are running chrome you need to do each test in a new tab though (and safar needs to be restarted to pick up timezone changes). If you want more details of the code check out: https://bitbucket.org/pellepim/jstimezonedetect/ | |||
|
feedback
|
|
On server-side it will be not as accurate as with JavaScript. Meanwhile, sometimes it is required to solve such task. Just to share the possible solution in this case I write this answer. If you need to determine user's time zone it could be done via Geo-IP services. Some of them providing timezone. For example, this one (http://smart-ip.net/geoip-api) could help:
| |||
|
feedback
|