Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does CCYYMMDD date format mean?

I want to speak to a soap service that has a date parameter which is required to be the CCYYMMDD format.

What is its definition?

like image 604
k0pernikus Avatar asked Oct 29 '15 17:10

k0pernikus


People also ask

What does Ddmmccyy mean?

Day, month, century, year ( DDMMCCYY ) or. Month, day, century year ( MMDDCCYY )

What is the default date format?

The default date format shows as YYYY-MM-DD.


2 Answers

It's just another way of writing yyyyMMdd.

The CC part represents the century, while YY is the two-digit year.

like image 56
Alex Tartan Avatar answered Nov 12 '22 01:11

Alex Tartan


It means yyyyMMdd, as in year (4 digits), month (2 digits, leading zero) and day (2 digits, leading zero).

So the ISO 8601 date 2014-01-05 is represented as CCYYMMDD as 20140105.

like image 36
k0pernikus Avatar answered Nov 12 '22 02:11

k0pernikus