up vote 30 down vote favorite
6
share [g+] share [fb]

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

link|improve this question

feedback

8 Answers

up vote 60 down vote accepted
// create a new javascript Date object based on the timestamp
// multiplied by 1000 so that the argument is in milliseconds, not seconds
var date = new Date(unix_timestamp*1000);
// hours part from the timestamp
var hours = date.getHours();
// minutes part from the timestamp
var minutes = date.getMinutes();
// seconds part from the timestamp
var seconds = date.getSeconds();

// will display time in 10:30:23 format
var formattedTime = hours + ':' + minutes + ':' + seconds;

For more information regarding the Date object, please refer to this page on W3Schools or this page from the JavaScript 1.5 reference.

link|improve this answer
3  
UNIX timestamps are expressed in seconds—but JavaScript works in milliseconds! I don't think the above code will work correctly. – Steve Harrison May 11 '09 at 8:39
Corrected, thanks. – Aron Rotteveel May 11 '09 at 8:40
also you could save yourself a couple of processor ticks by avoiding the need for the large multiplication by just appending three 0s: echo "var date = new Date(" . $timestamp . "000);\n"; – nickf May 13 '09 at 4:08
10  
@nickf multiplications are trivial on modern CPUs - the string concatenation will require a lot more work! – Alnitak Apr 19 '11 at 19:59
@Alnitak - yeah, good point! I dunno wtf I was thinking... – nickf Apr 19 '11 at 22:43
show 1 more comment
feedback

JavaScript works in milliseconds, so you'll first have to convert the UNIX timestamp from seconds to milliseconds.

var date = new Date([UNIX Timestamp] * 1000);
// Manipulate JavaScript Date object here...

Steve

link|improve this answer
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:

    function tm(unix_tm) {
    	var dt = new Date(unix_tm*1000);
    	document.writeln(dt.getHours() + '/' + dt.getMinutes() + '/' + dt.getSeconds() + ' -- ' + dt + '<br>');

    }

tm(60);
tm(86400);

gives:

1/1/0 -- Thu Jan 01 1970 01:01:00 GMT+0100 (Central European Standard Time)
1/0/0 -- Fri Jan 02 1970 01:00:00 GMT+0100 (Central European Standard Time)
link|improve this answer
feedback
function timeConverter(UNIX_timestamp){
 var a = new Date(UNIX_timestamp*1000);
 var months = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'];
     var year = a.getFullYear();
     var month = months[a.getMonth()];
     var date = a.getDate();
     var hour = a.getHours();
     var min = a.getMinutes();
     var sec = a.getSeconds();
     var time = date+','+month+' '+year+' '+hour+':'+min+':'+sec ;
     return time;
 }
link|improve this answer
for HH/MM/SS just use last three variables and this is time will be in your local time but if you want to get the UTC time just use the getUTC methods. Here's the code. – shomrat May 21 '11 at 0:52
feedback

Take a look at PHP's date function.

link|improve this answer
If you're down-voting me because my solution is in PHP, then take a look a second look at the question. He's not asking it to be in JavaScript. Furthermore, there's a PHP tag in there. – Ionuț G. Stan May 11 '09 at 8:57
@Ionut G. Stan: "...and that gets sent to some Javascript, how would I get just the time out of it?". It sounds to me like he wants the answer in JavaScript. The only place PHP is even mentioned is in a (in my opinion, misplaced) tag. Finally, he's marked one of the JavaScript answers as his accepted answer. – Steve Harrison May 11 '09 at 10:14
@Steve, in my opinion, it could have been MySQL as well. He didn't mentioned the place where he wants the transformation and at the time I answered, I couldn't have a clue what kind of answer he'll accept. – Ionuț G. Stan May 11 '09 at 10:35
@Ionut G. Stan: Yes, I agree that the question is a bit ambiguous. – Steve Harrison May 11 '09 at 10:46
feedback

Mysql from_unixtime function does the job:

SELECT FROM_UNIXTIME(UNIX_TIMESTAMP(), '%h/%i/%s');

For timestamps from getTimeMillis() I had to divide the timestamp by 1000 to get the right result.

link|improve this answer
feedback
function timeConverter(UNIX_timestamp){
 var a = new Date(UNIX_timestamp*1000);
     var hour = a.getUTCHours();
     var min = a.getUTCMinutes();
     var sec = a.getUTCSeconds();
     var time = hour+':'+min+':'+sec ;
     return time;
 }
link|improve this answer
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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.