chiprivers Posted September 17, 2010 Share Posted September 17, 2010 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! Quote Link to comment https://forums.phpfreaks.com/topic/213669-dateparse/ Share on other sites More sharing options...
Adam Posted September 17, 2010 Share Posted September 17, 2010 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. Quote Link to comment https://forums.phpfreaks.com/topic/213669-dateparse/#findComment-1112138 Share on other sites More sharing options...
chiprivers Posted September 17, 2010 Author Share Posted September 17, 2010 sorry, that was a typo - should be YYYY-MM-DD HH:MM:SS Quote Link to comment https://forums.phpfreaks.com/topic/213669-dateparse/#findComment-1112160 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.