Hi All,
I am trying for something in Daylight saving time. I have a eastern time stamp and the timezone (possible timezones CST,EST,PST,MST ,HST). Basically these are two input which is required for my daylight saving time calculation.
If the time zone is CST i have to convert the given eastern timestamp to central timestamp.
like
Now i have to find whether the given central timestamp ($central) is coming under the Daylight saving time or not. Can some one help me how to find daylight saving is true or false.?
Thanks in advance,
Thanks,
Magesh
I am trying for something in Daylight saving time. I have a eastern time stamp and the timezone (possible timezones CST,EST,PST,MST ,HST). Basically these are two input which is required for my daylight saving time calculation.
If the time zone is CST i have to convert the given eastern timestamp to central timestamp.
like
Code:
if ($timezone == "CST") $central = $eastern - 3600;
Thanks in advance,
Thanks,
Magesh
Comment