Day |
--- |
--- |
D |
Day of the month, 2 digits with leading zeros |
01To31 |
D |
A textual representation of a day, three letters |
MonThroughSun |
J |
Day of the month without leading zeros |
1To31 |
L(Lowercase 'L ') |
A full textual representation of the day of the week |
SundayThroughSaturday |
N |
ISO-8601 numeric representation of the day of the week (added in PHP 5.1.0) |
1(For Monday) through7(For Sunday) |
S |
English ordinal suffix for the day of the month, 2 characters |
St,Nd,RdOrTh. Works wellJ |
W |
Numeric representation of the day of the week |
0(For Sunday) through6(For Saturday) |
Z |
The day of the year (starting from 0) |
0Through365 |
Week |
--- |
--- |
W |
ISO-8601 week number of year, weeks starting on Monday (added in PHP 4.1.0) |
Example:42(The 42nd week in the year) |
Month |
--- |
--- |
F |
A full textual representation of a month, such as January or March |
JanuaryThroughDecember |
M |
Numeric representation of a month, with leading zeros |
01Through12 |
M |
A short textual representation of a month, three letters |
JanThroughDec |
N |
Numeric representation of a month, without leading zeros |
1Through12 |
T |
Number of days in the given month |
28Through31 |
Year |
--- |
--- |
L |
Whether it's a leap year |
1If it is a leap year,0Otherwise. |
O |
ISO-8601 year number. This has the same valueY, Before t that if the ISO week number (W) Belongs to the previous or next year, that year is used instead. (added in PHP 5.1.0) |
Examples:1999Or2003 |
Y |
A full numeric representation of a year, 4 digits |
Examples:1999Or2003 |
Y |
A two digit representation of a year |
Examples:99Or03 |
Time |
--- |
--- |
A |
Lowercase Ante meridiem and Post meridiem |
AmOrPm |
A |
Uppercase Ante meridiem and Post meridiem |
AMOrPM |
B |
Swatch Internet time |
000Through999 |
G |
12-hour format of an hour without leading zeros |
1Through12 |
G |
24-hour format of an hour without leading zeros |
0Through23 |
H |
12-hour format of an hour with leading zeros |
01Through12 |
H |
24-hour format of an hour with leading zeros |
00Through23 |
I |
Minutes with leading zeros |
00To59 |
S |
Seconds, with leading zeros |
00Through59 |
U |
Microseconds (added in PHP 5.2.2) |
Example:654321 |
Timezone |
--- |
--- |
E |
Timezone identifier (added in PHP 5.1.0) |
Examples:UTC,GMT,Atlanta/Azores |
I(Capital I) |
Whether or not the date is in daylight saving time |
1If Daylight Saving Time,0Otherwise. |
O |
Difference to Greenwich time (GMT) in hours |
Example:+ 0200 |
P |
Difference to Greenwich time (GMT) with colon between hours and minutes (added in PHP 5.1.3) |
Example:+ 0: 00 |
T |
Timezone abbreviation |
Examples:EST,MDT... |
Z |
Timezone offset in seconds. The offset for timezones west of UTC is always negative, and for those east of UTC is always positive. |
-43200Through50400 |
Full Date/Time |
--- |
--- |
C |
ISO 8601 date (added in PHP 5) |
2004-02-12T15: 19: 21 + 00: 00 |
R |
?? RFC 2822 formatted date |
Example:Thu, 21 Dec 2000 16:01:07 + 0200 |
U |
Seconds since the Unix Epoch (January 1 1970 00:00:00 GMT) |
See also time () |