Jump to content

Date.parse()


chiprivers

Recommended Posts

My php script is working with dates in the format 'YYYY-DD-MM HH:MM:SS'.  I want to pass this into my javascript, at which point I will need to convert it to a date object.

 

I have tried using Date.parse() but it does not like the format of my date string.

 

What is the simplest way to turn this date string into a date object?  NB I would rather do this within the javacript than as part of the php!

Link to comment
https://forums.phpfreaks.com/topic/213669-dateparse/
Share on other sites

What's the format you're using there? Little unusual (and logically flawed) to have the date before the month. Anyway best solution looks like:

 

http://stackoverflow.com/questions/3075577/convert-mysql-datetime-stamp-into-javascripts-date-format

 

You'll need to swap the parameters round for your month and date though.

Link to comment
https://forums.phpfreaks.com/topic/213669-dateparse/#findComment-1112138
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.