Menu
×
   ❮   
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

模板标签


示例

添加当前日期

<!DOCTYPE html>
<html>
<body>

<h1>{% now "Y-m-d" %}</h1>

</body>
</html>
运行示例 »

定义和用法

The now 标签根据指定的格式插入当前日期和/或时间。

示例

添加当前日期和时间

<!DOCTYPE html>
<html>
<body>

<h1>{% now "Y-m-d G:i:s" %}</h1>

</body>
</html>
运行示例 »

语法

{% now format %}

参数

描述
format 必需。包含以下字符组合的字符串

字符 描述
y 年份,两位数 (00-99)
Y 年份,四位数 (0001-9999)
L 返回现在是否为闰年 (True-False)
m 月份,两位数 (01-12)
n 月份,一位或两位数 (1-12)
M 月份,三个字母 (Jan-Dec)
b 月份,三个小写字母 (jan-dec)
E 月份,本地语言文本
F 月份,完整文本 (January-December)
N 月份,最多五个字母,如果月份名称超过五个字母,则使用适当的缩写 (Jan. Dec.)
t 月份的天数 (28-31)
d 月份中的日期 (01-31)
D 星期几 (Sun-Sat)
j 月份中的日期 (1-31)
l 星期几 (Sunday-Saturday)
S 数字的结尾 (st-nd-rd-th)
w 星期几 (0-6)
z 年的日期 (1-366)
W 年的星期数 (ISO-8601) (1-53)
g 小时 (1-12)
G 小时 (0-23)
h 小时 (01-12)
H 小时 (00-23)
i 分钟 (00-59)
s 秒 (00-59)
u 微秒 (000000-999999)
a 上午/下午 (a.m. or p.m.)
A 上午/下午 (A.M. or P.M.)
f 时间 (9:45)。如果时间精确到分钟,则只返回小时 (9)
P 时间 (9:45 p.m.)。如果时间精确到分钟,则返回 (9 p.m.)。如果时间精确到 0:00,则返回 (midnight)。如果时间精确到 12:00,则返回 (noon)。
e 时区名称,例如 (GMT) 或 (UTC)
I 返回我们是否处于夏令时 (1 或 0)
O 与 GMT 的时差 (+0500)
T 本地时区,例如 (UTC) 或 (EST)
Z 与 GMT 的时差,以秒为单位 (3600)
c 当前日期,ISO 8601 格式 (2022-04-05T12:38:30.797643+00:00)
r 当前日期,RFC 5322 格式 (Tue, 05 Apr 2022 12:39:24 +0000)
U 自 1970 年 1 月 1 日 00:00:00 起的秒数

×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.