1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
---
title: Date
slug: Web/HTTP/Headers/Date
tags:
- 日期
- 格林尼治标准时间
- 通用首部
- 首部
translation_of: Web/HTTP/Headers/Date
---
<div>{{HTTPSidebar}}</div>
<p><strong><code>Date </code></strong>是一个通用首部,其中包含了报文创建的日期和时间。</p>
<table class="properties">
<tbody>
<tr>
<th scope="row">Header type</th>
<td>{{Glossary("General header")}}</td>
</tr>
<tr>
<th scope="row">{{Glossary("Forbidden header name")}}</th>
<td>yes</td>
</tr>
</tbody>
</table>
<h2 id="语法">语法</h2>
<pre class="syntaxbox">Date: <day-name>, <day> <month> <year> <hour>:<minute>:<second> GMT
</pre>
<h2 id="指令">指令</h2>
<dl>
<dt><day-name></dt>
<dd>"Mon", "Tue", "Wed", "Thu", "Fri", "Sat", 或 "Sun" 之一 (区分大小写)。</dd>
<dt><day></dt>
<dd>2位数字表示天数,例如, "04" 或 "23"。</dd>
<dt><month></dt>
<dd>"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" 之一(区分大小写)。</dd>
<dt><year></dt>
<dd>4位数字表示年份,例如, "1990" 或 "2016"。</dd>
<dt><hour></dt>
<dd>2位数字表示小时数,例如, "09" 或 "23"。</dd>
<dt><minute></dt>
<dd>2位数字表示分钟数,例如, "04" 或 "59"。</dd>
<dt><second></dt>
<dd>2位数字表示秒数,例如, "04" 或 "59"。</dd>
<dt>GMT</dt>
<dd>
<p>格林尼治标准时间。 在HTTP协议中,时间都是用格林尼治标准时间来表示的,而不是本地时间。</p>
</dd>
</dl>
<h2 id="示例">示例</h2>
<pre>Date: Wed, 21 Oct 2015 07:28:00 GMT
</pre>
<h2 id="规范">规范</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Specification</th>
<th scope="col">Title</th>
</tr>
<tr>
<td>{{RFC("7231", "Date", "7.1.1.2")}}</td>
<td>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
<p>{{Compat("http.headers.Date")}}</p>
<h2 id="相关内容">相关内容</h2>
<ul>
<li>{{HTTPHeader("Age")}}</li>
</ul>
|