Ask a Question related to PHP Development, Design and Development.
-
Jeff McKeon #1
RE: [PHP] Timezones and Daylight Savings Time
What if you set the server to use UTC and then used the clients local
system setting to offset it for each client?
So the server would have it's time at UTC and a client in the Eastern US
would be at -4. You could then detect the web client timezone setting
and adjust as needed?
This is just a logic suggestion, I have no idea if it's possible with
code but I would imagin it would be..
Jeff
http://shopping.yahoo.com> -----Original Message-----
> From: J J [mailto:squid_66@yahoo.com]
> Sent: Thursday, September 25, 2003 12:56 PM
> To: [email]php-general@lists.php.net[/email]
> Subject: [PHP] Timezones and Daylight Savings Time
>
>
> Got a client site in Thailand that is about 13 hours
> different from the Web Server time so with any
> date/time stamping I need to add the 13 hours.
> However, when it comes time for DST, I'd hate to have
> to code for that or remember to manually change the
> time stamping.
>
> Is there some kind of automated function that
> determines the time zone of one location to another
> and stamps the correct time -- with or without DST?
>
>
> I guess otherwise you'd have to do something like:
> if > Oct 31st and < April XX { time+12 } else {
> time+13
>
> Obviously not the correct code but that's the idea.
> Am I off base here? Is there a simpler method or
> something I'm not thinking of?
>
> If the server was dedicated I would just fix the
> server time to be Thailand time, but it's a shared
> server and I can't do that.
>
> Thanks in advance!
>
>
> __________________________________
> Do you Yahoo!?
> The New Yahoo! Shopping - with improved product search
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Jeff McKeon Guest
-
Daylight Savings Time
Using the Date object, I can get the timezone (eg: GMT-4 is current for EDT, EST would return GMT-5). WHat I need help with is determining, from a... -
Daylight Savings Time fix and CFDOCUMENT
After our webmaster installed the JVM update (1.4.2_13) to correct the DST issue, I discovered that CFDOCUMENT doesn't seem to function. Has anyone... -
ColdFusion 5 and Daylight Savings Time
Is Cold Fusion 5 affected by the change in Daylight Savings Time that's coming up? If so, is there a resolution? -
CF MX and Daylight Savings Time Change
Next year 2007, the Daylight Saving day (chaning the clocks for spring and fall) will be changing. The Spring date will be a month earlier and the... -
accounting for daylight savings time
Hi If you need to account for daylight savings, you could use the following SQL query to detect the same select SYSDATE x, 0 r1 from dual where... -
J J #2
RE: [PHP] Timezones and Daylight Savings Time
They want everything set to their time, so it would
probably be easier just to determine the server time
and add as necessary. I think...
--- Jeff McKeon <jmckeon@telaurus.com> wrote:__________________________________> What if you set the server to use UTC and then used
> the clients local
> system setting to offset it for each client?
>
> So the server would have it's time at UTC and a
> client in the Eastern US
> would be at -4. You could then detect the web
> client timezone setting
> and adjust as needed?
>
> This is just a logic suggestion, I have no idea if
> it's possible with
> code but I would imagin it would be..
>
> Jeff
>
>
Do you Yahoo!?
The New Yahoo! Shopping - with improved product search
[url]http://shopping.yahoo.com[/url]
J J Guest



Reply With Quote

