PHP DateTime formatting cribsheet
Describes the placeholders you can use when formatting dates in PHP or with Carbon
Last updated
Was this helpful?
Describes the placeholders you can use when formatting dates in PHP or with Carbon
Last updated
Was this helpful?
Usage with php datetime object or
Character
Description
Example
H
24-hour format of an hour with leading zeros
00 through 23
G
24-hour format of an hour without leading zeros
0 through 23
h
12-hour format of an hour with leading zeros
01 through 12
g
12-hour format of an hour without leading zeros
1 through 12
a
Lowercase Ante meridiem and Post meridiem
am
or pm
A
Uppercase Ante meridiem and Post meridiem
AM
or PM
Character
Description
Example
i
Minutes with leading zeros
00 through 59
s
Seconds with leading zeros
00 through 59
u
Microseconds
eg 123456
v
Milliseconds
eg 654
Character
Description
Example
c
ISO 8601 Full Date Time
2020-06-26T13:40:10+00:00
r
formatted date
Fri, 26 Jun 2020 13:41:32 +0100
U
Seconds since the Unix Epoch (commonly referred to as timestamp format)
1593175400