I wondering what is the best way to convert a timestamp of this format -
2012-02-18 14:28:32
to a date presentation of this format -
Saturday Feb 2012 14:28:32
Many thanks :)
|
I wondering what is the best way to convert a timestamp of this format -
to a date presentation of this format -
Many thanks :) |
|||
|
|
Javascript date functions are pretty bad... You have the option to convert to UTC http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_toutcstring But if it was me, i would look into Datejs: http://www.datejs.com/ best javascript date api for me Please take a look at the getting started with Datejs: http://www.datejs.com/2007/11/27/getting-started-with-datejs/ |
|||||
|
|
JavaScripts Date object is lacking methods for formatting. I would consider using an external library like this one. Seems it has what you're looking for. |
|||
|
|
|
try this blog it has enough dateformats: |
||||
|
|
|
You must first define an array of the English words (Sunday, Monday, Feb, Mar, etc.):
To be able insert the extra
Format the date and time like this:
You can get the whole thing by concatenating
|
|||
|
|
|
Consider using
|
||||
|
|