4

ドキュメントhttp://www.w3.org/TR/NOTE-datetime

日付と時刻の形式について多くのことを言っています:

Examples

1994-11-05T08:15:30-05:00 corresponds to November 5, 1994, 8:15:30 am, US Eastern Standard Time.

1994-11-05T13:15:30Z corresponds to the same instant.

完全な日付と時、分、秒、および小数秒 YYYY-MM-DDThh:mm:ss.sTZD (例: 1997-07-16T19:20:30.45+01:00)

どこ:

 YYYY = four-digit year
 MM   = two-digit month (01=January, etc.)
 DD   = two-digit day of month (01 through 31)
 hh   = two digits of hour (00 through 23) (am/pm NOT allowed)
 mm   = two digits of minute (00 through 59)
 ss   = two digits of second (00 through 59)
 s    = one or more digits representing a decimal fraction of a second
 TZD  = time zone designator (Z or +hh:mm or -hh:mm)

しかし、1994-11-05T08:15:30 の T は何のためですか?

4

2 に答える 2

10

Formatセクションの 2 番目の段落から:

ISO 8601 で指定されているように、時間要素の開始を示すために、「T」が文字列にそのまま表示されることに注意してください。

于 2013-02-01T08:17:09.437 に答える
3

これは、文字列の時間部分の開始位置を指定するための単なるセパレータです。

于 2013-02-01T08:18:47.310 に答える