I am storing time in a MySQL database as a Unix timestamp and that gets sent to some Javascript, how would I get just the time out of it? Ex. HH/MM/SS
|
feedback
|
For more information regarding the Date object, please refer to this page on W3Schools or this page from the JavaScript 1.5 reference. | |||||||||||||||
feedback
|
|
JavaScript works in milliseconds, so you'll first have to convert the UNIX timestamp from seconds to milliseconds.
Steve | |||
|
feedback
|
|
UNIX timestamp is number of seconds since 00:00:00 UTC on January 1, 1970 (according to Wikipedia). Argument of Date object in Javascript is number of miliseconds since 00:00:00 UTC on January 1, 1970 (according to W3C Javascript documentation). See code below for example:
gives:
| ||||
|
feedback
|
| |||
feedback
|
|
Take a look at PHP's date function. | |||||||||
feedback
|
|
Mysql from_unixtime function does the job:
For timestamps from getTimeMillis() I had to divide the timestamp by 1000 to get the right result. | |||
|
feedback
|
| |||
|
feedback
|
|
The problem with the aforementioned solutions is, that if hour, minute or second, has only one digit (i.e. 0-9), the time would be wrong, e.g. it could be 2:3:9, but it should rather be 02:03:09. According to this page it seems to be a better solution to use Date's "toLocaleTimeString" method. | |||
|
feedback
|