aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/http/headers/date/index.html
blob: d0fd091e87ebd162d071ed7a73c960944c0a31d5 (plain)
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
---
title: Date
slug: Web/HTTP/Headers/Date
tags:
- General Header
- HTTP
- Reference
- header
- リファレンス
- 一般ヘッダー
- 汎用ヘッダー
translation_of: Web/HTTP/Headers/Date
---
<div>{{HTTPSidebar}}</div>

<p><strong><code>Date</code></strong> は HTTP の一般ヘッダーで、メッセージが発信された日時が含まれています。</p>

<div class="notecard warning">
	<p><code>Date</code> は fetch 仕様書において<a href="https://fetch.spec.whatwg.org/#forbidden-header-name" rel="nofollow noreferrer">禁止ヘッダー名</a>に挙げられています。 - そのため、このコードは <code>Date</code> ヘッダーを送信しません。</p>

	<pre class="brush: js">fetch('https://httpbin.org/get', {
    'headers': {
        'Date': (new Date()).toUTCString()
    }
})</pre>
</div>

<table class="properties">
	<tbody>
		<tr>
			<th scope="row">ヘッダー種別</th>
			<td>{{Glossary("General header", "一般ヘッダー")}}</td>
		</tr>
		<tr>
			<th scope="row">{{Glossary("Forbidden header name", "禁止ヘッダー名")}}</th>
			<td>はい</td>
		</tr>
	</tbody>
</table>

<h2 id="Syntax">構文</h2>

<pre class="brush: html">Date: &lt;day-name&gt;, &lt;day&gt; &lt;month&gt; &lt;year&gt; &lt;hour&gt;:&lt;minute&gt;:&lt;second&gt; GMT
</pre>

<h2 id="Directives">ディレクティブ</h2>

<dl>
	<dt>&lt;day-name&gt;</dt>
	<dd>"Mon"、"Tue"、"Wed"、"Thu"、"Fri"、"Sat"、"Sun" のいずれか (大文字小文字を区別)。</dd>
	<dt>&lt;day&gt;</dt>
	<dd>2 桁の日番号。例えば "04" または "23"。</dd>
	<dt>&lt;month&gt;</dt>
	<dd>"Jan"、"Feb"、"Mar"、"Apr"、"May"、"Jun"、"Jul"、"Aug"、"Sep"、 "Oct"、"Nov"、"Dec" のいずれか (大文字と小文字を区別)。</dd>
	<dt>&lt;year&gt;</dt>
	<dd>4 桁の年の数字。たとえば "1990" または "2016"。</dd>
	<dt>&lt;hour&gt;</dt>
	<dd>2 桁の時の数字。たとえば "09" または "23"。</dd>
	<dt>&lt;minute&gt;</dt>
	<dd>2 桁の分の数字。たとえば "04" または "59"。</dd>
	<dt>&lt;second&gt;</dt>
	<dd>2 桁の秒の数字。たとえば "04" または "59"。</dd>
	<dt>GMT</dt>
	<dd>
		<p>グリニッジ標準時。HTTP の日付は常に GMT で表され、決して現地時間で表されることはありません。</p>
	</dd>
</dl>

<h2 id="Examples"></h2>

<pre>Date: Wed, 21 Oct 2015 07:28:00 GMT
</pre>

<pre class="brush: js">new Date().toUTCString()
// "Mon, 09 Mar 2020 08:13:24 GMT"</pre>

<h2 id="Specifications">仕様書</h2>

<table class="standard-table">
	<thead>
		<tr>
			<th scope="col">仕様書</th>
			<th scope="col">題名</th>
		</tr>
	</thead>
	<tbody>
		<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="Browser_compatibility">ブラウザーの互換性</h2>

<p class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</p>

<p>{{Compat("http.headers.Date")}}</p>

<h2 id="See_also">関連情報</h2>

<ul>
	<li>{{HTTPHeader("Age")}}</li>
</ul>