I want to be able to get the time of the person using the PHP script.
I don't know what time zone they will be in, etc.
Is there not a way of just saying 'get the time of the user' rather than setting timezones?
|
|
No. There are only three ways to get the time zone of the user:
|
|||||||||||||||||
|
|
No, there is not. The only thing you get to know about your users "for free" is what can be communicated via the HTTP protocol, and that doesn't include "user timezone." You could use Javascript to get the time from the browser, but that's not guaranteed to be accurate. You could try to geolocate the user, but that's even less accurate. The user will know best himself, ask him. |
|||
|
|
That's the webserver. If you mean the person requesting the PHP script, you don't know their timezone unless they're nice enough to send it to you. Firefox does not appear to, although some may. The answer here is to use Javascript to get the local time and either do what needs doing client-side, or send it to the server somehow - but that's a different question. |
|||
|
|