Answers for "ISO 8601"

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
3

iso date

2021-01-05T11:48Z
Posted by: Guest on January-05-2021
2

ISO 8601

YYYY-MM-DD'T'hh:mm:ss'Z'

Z is the ofset from the UTC timezone 
it can be replaced with "(+/-)hh:mm"
if ofset is not specified, character 'Z' is in place instead

2021-01-01T01:01:01+01:00
2021-02-02T02:02:42.069-02:00
2021-03-03T03:03:03.3Z
20210404T040404Z
Posted by: Guest on May-24-2021
1

iso-8601

echo date('c'); //2021-02-03T21:42:51-08:00

echo date(DATE_ISO8601); //2021-02-03T21:42:51-0800

$datetime = new DateTime();
echo $datetime->format(DateTime::ATOM); //2021-02-03T21:42:51-08:00
Posted by: Guest on February-04-2021
0

Local to ISO 8601:

import datetime
datetime.datetime.now().isoformat()
>>> 2020-03-20T14:28:23.382748
Posted by: Guest on September-16-2021

Browse Popular Code Answers by Language