Answers for "js convert date to ISO Dates (Date-Time)"

PHP
1

php convert date and time to iso 8601

//Object Oriented Method

$datetime = new DateTime('2010-12-30 23:21:46');

echo $datetime->format(DateTime::ATOM); // Updated ISO8601


//Procedural Method

echo date(DATE_ISO8601, strtotime('2010-12-30 23:21:46'));
Posted by: Guest on April-03-2020
1

javascript convert date from mm/dd/yyyy to yyyymmdd

var yourdate = date.split("/").reverse().join("-");
Posted by: Guest on May-25-2020

Code answers related to "js convert date to ISO Dates (Date-Time)"

Browse Popular Code Answers by Language