DateTimeInterface::format
DateTimeImmutable::format
DateTime::format
date_format
(PHP 5 >= 5.2.0, PHP 7, PHP 8)
DateTimeInterface::format -- DateTimeImmutable::format -- DateTime::format -- date_format — 按照指定格式返回格式化后的日期
说明
面向对象风格
过程化风格
按照指定格式返回格式化后的日期。
参数
object
仅为过程化风格:由 date_create() 返回的 DateTime 类型的对象。
format
-
输出的日期 string 的格式。参见下面的格式化选项。也有几个预定义日期常量可以代替。例如
DATE_RSS
包含格式化字符串'D, d M Y H:i:s'
。format
参数字符串可以识别以下字符format
字符说明 返回值示例 日 --- --- d
月份中的第几天,有补零的两位数字 01
到31
D
文字表示星期几,三个字母 Mon
到Sun
j
月份中的第几天,没有补零 1
到31
l
(小写 'L')完整文本表示星期几 Sunday
到Saturday
N
ISO 8601 数字表示星期几 1
(星期一)到7
(星期天)S
月份中的第几天英文后缀,两个字符 st
、nd
、rd
或th
。可以和j
一起使用w
数字表示星期几 0
(星期天)到6
(星期六)z
一年中的第几天(从 0 开始) 0
到365
周 --- --- W
ISO 8601 格式当年中的第几周,每周从周一开始 示例: 42
(当年的第 42 周)月 --- --- F
月份的完整文本表示,比如 January 或者 March January
到December
m
月份的数字表示,补零 01
到12
M
简短文本表示月份,三个字母 Jan
到Dec
n
数字表示几月份,不补零 1
到12
t
指定月份的天数 28
到31
年 --- --- L
是否是闰年 如果是闰年为 1
,否则为0
。o
ISO 8601 数字年份表示。这和 Y
值相同,但如果 ISO 周数(W
)属于上一年或者下一年,则用那一年。示例: 1999
或2003
X
年份的展开全数字表示,至少四位, -
表示公元前,+
表示公元。示例: -0055
、+0787
、+1999
、+10191
x
如果需要,年份可以展开全数字表示,如果可能的话,也可以用标准的全数字( Y
)表示。至少有四位数字。公元前以-
为前缀,年份不小于10000
时以+
为前缀。示例: -0055
,0787
,1999
,+10191
Y
年份完整数字表示,至少四位,使用 -
表示公元前。示例: -0055
、0787
、1999
、2003
、10191
y
两位数的年份表示 示例: 99
或03
时间 --- --- a
小写的上午和下午 am
或pm
A
大写的上午和下午 AM
或PM
B
Swatch 互联网时间 000
到999
g
不补零的小时(12 小时制) 1
到12
G
不补零的小时(24 小时制) 0
到23
h
补零的小时(12 小时制) 01
到12
H
补零的小时(24 小时制) 00
到23
i
补零的分钟 00
到59
s
补零的秒 00
到59
u
微秒。注意 date() 总是生成 000000
,因为它需要一个 int 参数,而如果 DateTimeInterface 是使用微秒创建的,则 DateTimeInterface::format() 支持微秒。示例: 654321
v
毫秒。与 u
的说明相同。示例: 654
时区 --- --- e
时区标识符 示例: UTC
、GMT
、Atlantic/Azores
I
(大写 i)是否为夏令时 如果是夏令时为 1
,否则为0
。O
跟格林尼治时间(GMT)的差异,小时和分钟时间没有冒号 示例: +0200
P
跟格林尼治时间(GMT)的差异,小时和分钟时间有冒号 示例: +02:00
p
跟 P
相同,区别是使用Z
替换+00:00
返回(PHP 8.0.0 起可用)示例: Z
或+02:00
T
如果知道会返回时区缩写,否则返回 GMT 时差。 示例: EST
、MDT
、+05
Z
以秒为单位的时差。UTC 以西的时区为负的时差,以东为正的时差。 -43200
到50400
完整日期/时间 --- --- c
ISO 8601 日期 2004-02-12T15:19:21+00:00 r
» RFC 2822/» RFC 5322 格式化时间 示例: Thu, 21 Dec 2000 16:01:07 +0200
U
从 Unix 纪元(January 1 1970 00:00:00 GMT)到至今的秒数 参见 time() 格式字符串中无法识别的字符将会原样打印。当使用 gmdate() 时,
Z
格式将始终返回0
。注意:
由于本函数仅接受 int 类型时间戳,所以
u
格式化标识符仅在用户使用 date_create() 且使用 date_format() 创建时间戳时才有用。
返回值
成功时返回格式化后的日期字符串。
更新日志
版本 | 说明 |
---|---|
8.2.0 |
新增 X 和 x 格式化字符。
|
8.0.0 |
新增 p 格式化字符。
|
示例
示例 #1 DateTimeInterface::format() 示例
面向对象风格
<?php
$date = new DateTimeImmutable('2000-01-01');
echo $date->format('Y-m-d H:i:s');
?>
过程化风格
<?php
$date = date_create('2000-01-01');
echo date_format($date, 'Y-m-d H:i:s');
?>
以上示例会输出:
2000-01-01 00:00:00
示例 #2 更多示例
<?php
// 设置使用的默认时区。
date_default_timezone_set('UTC');
// 现在
$date = new DateTimeImmutable();
// 打印类似:Wednesday
echo $date->format('l'), "\n";
// 打印类似:Wednesday 19th of October 2022 08:40:48 AM
echo $date->format('l jS \o\f F Y h:i:s A'), "\n";
/* 在 format 参数中使用常量 */
// 打印类似:Wed, 19 Oct 2022 08:40:48 +0000
echo $date->format(DateTimeInterface::RFC2822), "\n";
?>
通过对格式化字符串中的识别字符添加反斜线,对其转义来防止被解析。如果带有反斜线的字符已经是特殊序列,那么还要对反斜线进行转义。
示例 #3 格式化时转义字符
<?php
$date = new DateTimeImmutable();
// 打印类似:Wednesday the 19th
echo $date->format('l \t\h\e jS');
?>
要格式化其它语言的日期,可以使用 IntlDateFormatter::format() 代替 DateTimeInterface::format()。
注释
此方法不使用区域设置,所有的输出都是英文。
参见
- IntlDateFormatter::format() - Format the date/time value as a string
用户贡献的备注 1 note
If you want to get the week of year + year of said week, you need to use `format('o-W'), otherwise you can stumble into a non-obvious gotcha (unless you RTFM and memorised it, that is).
Using `Y` instead of `o` can result in incorrect year values in the case of the first or last week of the year (depending on if January 4th falls into said week or not), such as the first week of 2025 between 2024-12-30 and 2025-01-05 - `(new DateTime('2024-12-30'))->format('o-W')` will return the correct value of `2025-01` (as per ISO-8601 definition of week of year), while `format('Y-W')` will return `2024-01`.
Because of this, I would personally recommend avoiding using week of year anywhere unless absolutely necessary, as it is easy to make this mistake and never realise it.