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 |
|||
|
|
|
|||
|
|
I'm partial to Jacob Wright's
|
|||||||||||
|
|
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 W3Schools Javascript documentation). See code below for example:
gives:
|
||||
|
|
|
Another way - from iso date.
|
|||
|
|
|
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. |
|||
|
|
|
Take a look at PHP's date function. |
|||||||||||||
|
|
|||
|
|
|
|||
|
|
|
http://www.esqsoft.com/javascript_examples/date-to-epoch.htm you need to
|
||||
|
|
protected by Community♦ Aug 17 '12 at 11:00
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.