1--TEST--
2DateTimeInterface constants
3--FILE--
4<?php
5
6var_dump(
7    DATE_ATOM    === DateTimeInterface::ATOM,
8    DATE_COOKIE  === DateTimeInterface::COOKIE,
9    DATE_ISO8601 === DateTimeInterface::ISO8601,
10    DATE_RFC822  === DateTimeInterface::RFC822,
11    DATE_RFC850  === DateTimeInterface::RFC850,
12    DATE_RFC1036 === DateTimeInterface::RFC1036,
13    DATE_RFC1123 === DateTimeInterface::RFC1123,
14    DATE_RFC2822 === DateTimeInterface::RFC2822,
15    DATE_RFC3339 === DateTimeInterface::RFC3339,
16    DATE_RSS     === DateTimeInterface::RSS,
17    DATE_W3C     === DateTimeInterface::W3C
18);
19
20?>
21--EXPECT--
22bool(true)
23bool(true)
24bool(true)
25bool(true)
26bool(true)
27bool(true)
28bool(true)
29bool(true)
30bool(true)
31bool(true)
32bool(true)
33