Reputation: 13400
Can someone explain me the following date format?
2012-08-08T15:04:33+0200
I suppose
2012-08-08 // should be year-month-day
15:04:33 // is hour:minutes:seconds
+0200 // should be the Timezone offset
I have no idea about T
meaning.
Upvotes: 3
Views: 242
Reputation: 3558
You are correct in your breakdown, the T is just a separator from date and time.
Upvotes: 1
Reputation: 15923
T signifies that everything following is Time
https://en.wikipedia.org/wiki/ISO_8601
Upvotes: 3