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
|
|
|
|
|
|
|
For more information regarding the Date object, please refer to this page on W3Schools or this page from the JavaScript 1.5 reference. |
||||||
|
|
|
JavaScript works in milliseconds, so you'll first have to convert the UNIX timestamp from seconds to milliseconds.
Steve |
||
|
|
|
|
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:
|
|||
|
|
|
|
Mysql from_unixtime function does the job:
For timestamps from getTimeMillis() I had to divide the timestamp by 1000 to get the right result. |
||
|
|
|
|
Take a look at PHP's date function. |
||||||||
|
