The DateTimeInterface interface
(PHP 5 >= 5.5.0, PHP 7)
简介
DateTimeInterface 的意思是可以约束类型为 DateTime 或 DateTimeImmutable。此接口不能让用户自己的 class 去实现(implements)。
类摘要
DateTimeInterface
{
const
string
ATOM
= "Y-m-d\TH:i:sP"
;
const
string
COOKIE
= "l, d-M-Y H:i:s T"
;
const
string
ISO8601
= "Y-m-d\TH:i:sO"
;
const
string
RFC822
= "D, d M y H:i:s O"
;
const
string
RFC850
= "l, d-M-y H:i:s T"
;
const
string
RFC1036
= "D, d M y H:i:s O"
;
const
string
RFC1123
= "D, d M Y H:i:s O"
;
const
string
RFC2822
= "D, d M Y H:i:s O"
;
const
string
RFC3339
= "Y-m-d\TH:i:sP"
;
const
string
RSS
= "D, d M Y H:i:s O"
;
const
string
W3C
= "Y-m-d\TH:i:sP"
;
public format
(
string $format
) :
string
}
预定义常量
DateTimeInterface::ATOM
-
DATE_ATOM
-
Atom 格式(示例:2005-08-15T15:52:01+00:00)
DateTimeInterface::COOKIE
-
DATE_COOKIE
-
HTTP Cookies 格式(示例:Monday, 15-Aug-2005 15:52:01 UTC)
DateTimeInterface::ISO8601
-
DATE_ISO8601
-
ISO-8601 格式(示例:2005-08-15T15:52:01+0000)
Note:
这种格式和 ISO-8601 的格式并不兼容,只是出于向后兼容的原因才保留的。
如果要使用和 ISO-8601 兼容的格式,
请使用 DateTime::ATOM
或 DATE_ATOM
两个常量。
DateTimeInterface::RFC822
-
DATE_RFC822
-
RFC 822 格式(示例:Mon, 15 Aug 05 15:52:01 +0000)
DateTimeInterface::RFC850
-
DATE_RFC850
-
RFC 850 格式(示例:Monday, 15-Aug-05 15:52:01 UTC)
DateTimeInterface::RFC1036
-
DATE_RFC1036
-
RFC 1036(示例:Mon, 15 Aug 05 15:52:01 +0000)
DateTimeInterface::RFC1123
-
DATE_RFC1123
-
RFC 1123 格式(示例:Mon, 15 Aug 2005 15:52:01 +0000)
DateTimeInterface::RFC2822
-
DATE_RFC2822
-
RFC 2822 格式(示例:Mon, 15 Aug 2005 15:52:01 +0000)
DateTimeInterface::RFC3339
-
DATE_RFC3339
-
同
DATE_ATOM
(自 PHP 5.1.3 版本可用)
DateTimeInterface::RFC3339_EXTENDED
-
DATE_RFC3339_EXTENDED
-
RFC 3339 EXTENDED 格式(自 PHP 7.0.0 可用)(示例:2005-08-15T15:52:01.000+00:00)
-
DATE_RSS
-
RSS(示例:Mon, 15 Aug 2005 15:52:01 +0000)
DateTimeInterface::W3C
-
DATE_W3C
-
RSS 格式(示例:2005-08-15T15:52:01+00:00)
Table of Contents
User Contributed Notes
There are no user contributed notes for this page.