Could you please advice how to remove an hour from unixtime.
I have a unixtime and i need to remove an extra hour before converting to normal time. Could you please advice how to do this?
Also, is Unixtime affected by the GMT time changes?
|
Could you please advice how to remove an hour from unixtime. I have a unixtime and i need to remove an extra hour before converting to normal time. Could you please advice how to do this? Also, is Unixtime affected by the GMT time changes?
| |||
|
feedback
|
|
Unix timestamps are measured in seconds, there are 3600 seconds in an hour (60 minutes, each with 60 seconds = 60*60 = 3600), so just subtract:
You can also use
Or if
So you seem to be looking for GMT time instead, the trouble is GMT can include Daylight Savings Time (DST), and the "GMT" date functions in PHP actually return UTC time, which has no concept of DST. Luckily you can detect if it's DST using PHP, and basically adjust appropriately. Get UTC time using
Detect if it's DST using
| |||||||||||||||||||||
feedback
|
$timestamp - (60 * 60)? – netcoder Apr 6 '11 at 0:02$timestamp - 3600:)? – webarto Apr 6 '11 at 0:04