date constants Flashcards
1
Q
How do you use a date constant?
A
date($dateconstant);
2
Q
DATE_ATOM
A
This is the format for Atom feeds. The PHP format is “Y-m-d\TH:i:sP” and example output is “2018-08-16T12:00:00+00:00”.
3
Q
DATE_COOKIE
A
This is the format for cookies set from a web server or JavaScript. The PHP format is “l, d-M-y H:i:s T” and example output is “Thursday, 16-Aug-18 12:00:00 UTC”.
4
Q
DATE_RSS
A
This is the format for RSS feeds. The PHP format is “D, d M Y H:i:s 0” and example output is “Thu, 16 Aug 2018 12:00:00 UTC”.
5
Q
DATE_W3C
A
This is the format for the World Wide Web Consortium. The PHP format is “Y-m-d\TH:i:sP” and example output is “2018-08-16T12:00:00+00:00”.