I'm trying to use javascript to convert a date object into a valid mysql date - what is the best way to do this?
|
Probably best to use a library like Date.js (although that hasn't been maintained in years) or Moment.js. But to do it manually, you can use
Usage:
Note that the function has a name, which is useful for debugging purposes, but because of the anonymous scoping function there's no pollution of the global namespace. That uses local time; for UTC, just use the UTC versions ( Caveat: I just threw that out, it's completely untested. |
||||
|
|
|
This worked for me, just edit the string instead:
|
|||
|
|
|
A bit of a typo in the first example, when a day has a length less than 1 it is adding the month instead of the day to the result. Works great though if you change:
to
Thanks for posting that script. The corrected function looks like:
|
|||
|
|
|
||||
|
|
|
Take a look at this handy library for all your date formatting needs: http://blog.stevenlevithan.com/archives/date-time-format |
|||
|
|
|
|||
|
|
|
Can be!
|
||||
|
|