Does anyone know how I can take a mysql datetime stamp, such as YYYY-MM-DD HH:MM:SS and either parse it or convert it to work in JavaScript's Date() function, such as.. Date('YYYY, MM, DD, HH, MM, SS);

Thank you!

link|improve this question

58% accept rate
feedback

5 Answers

up vote 47 down vote accepted

Some of the answers given here are either overcomplicated or just will not work (at least, not in all browsers). If you take a step back, you can see that the MySQL timestamp has each component of time in the same order as the arguments required by the Date() constructor.

All that's needed is a very simple split on the string:

// Split timestamp into [ Y, M, D, h, m, s ]
var t = "2010-06-09 13:12:01".split(/[- :]/);

// Apply each element to the Date function
var d = new Date(t[0], t[1]-1, t[2], t[3], t[4], t[5]);

alert(d);
// -> Wed Jun 09 2010 13:12:01 GMT+0100 (GMT Daylight Time)
link|improve this answer
Awesome, thank you :) – Dave Jun 21 '10 at 17:39
1  
Thanks for this - saved my sanity – codecowboy Aug 1 '11 at 10:25
Pure Awesomeness, +1 – BlackDivine Nov 8 '11 at 8:02
Thank you so much for this elegant solution! I had to use it because Safari doesn't seem to be able to automatically generate a Date object from a MySQL time stamp string eg. var d = new Date("2010-06-09 13:12:01");. While interestingly, Chrome has no problem with it. – alnafie Mar 18 at 15:58
feedback

To add to the excellent Andy E answer a function of common usage could be:

Date.createFromMysql = function(mysql_string)
{ 
   if(typeof mysql_string === 'string')
   {
      var t = mysql_string.split(/[- :]/);

      //when t[3], t[4] and t[5] are missing they defaults to zero
      return new Date(t[0], t[1] - 1, t[2], t[3] || 0, t[4] || 0, t[5] || 0);          
   }

   return null;   
}

In this way given a MySQL date/time in the form "YYYY-MM-DD HH:MM:SS" or even the short form (only date) "YYYY-MM-DD" you can do:

var d1 = Date.createFromMysql("2011-02-20");
var d2 = Date.createFromMysql("2011-02-20 17:16:00");
alert("d1 year = " + d1.getFullYear());
link|improve this answer
feedback

A quick search in google provided this:

 function mysqlTimeStampToDate(timestamp) {
    //function parses mysql datetime string and returns javascript Date object
    //input has to be in this format: 2007-06-05 15:26:02
    var regex=/^([0-9]{2,4})-([0-1][0-9])-([0-3][0-9]) (?:([0-2][0-9]):([0-5][0-9]):([0-5][0-9]))?$/;
    var parts=timestamp.replace(regex,"$1 $2 $3 $4 $5 $6").split(' ');
    return new Date(parts[0],parts[1]-1,parts[2],parts[3],parts[4],parts[5]);
  }

Source:http://snippets.dzone.com/posts/show/4132

link|improve this answer
feedback

are you in php?

var dateString = <? echo "'2000-09-10 00:00:00';"; ?>
var myDate = new Date(dateString);
link|improve this answer
Not all browsers will parse this date, IE certainly won't. – Andy E Jun 19 '10 at 14:55
feedback

Why not do this:

var d = new Date.parseDate( "2000-09-10 00:00:00", 'Y-m-d H:i:s' );
link|improve this answer
parseDate is not a JS method of the Date object. Eventually there is a static parse method but it accepts only 1 argument. – Marco Demaio Feb 20 '11 at 16:34
feedback

Your Answer

 
or
required, but never shown

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