4 * Unix time - the number of seconds since 1970-01-01 00:00:00 UTC
6 define( 'TS_UNIX', 0 );
9 * MediaWiki concatenated string timestamp (YYYYMMDDHHMMSS)
14 * MySQL DATETIME (YYYY-MM-DD HH:MM:SS)
19 * RFC 2822 format, for E-mail and HTTP headers
21 define( 'TS_RFC2822', 3 );
24 * ISO 8601 format with no timezone: 1986-02-09T20:00:00Z
26 * This is used by Special:Export
28 define( 'TS_ISO_8601', 4 );
31 * An Exif timestamp (YYYY:MM:DD HH:MM:SS)
33 * @see http://exif.org/Exif2-2.PDF The Exif 2.2 spec, see page 28 for the
34 * DateTime tag and page 36 for the DateTimeOriginal and
35 * DateTimeDigitized tags.
37 define( 'TS_EXIF', 5 );
42 define( 'TS_ORACLE', 6 );
45 * Postgres format time.
47 define( 'TS_POSTGRES', 7 );
50 * ISO 8601 basic format with no timezone: 19860209T200000Z. This is used by ResourceLoader
52 define( 'TS_ISO_8601_BASIC', 9 );