format optional default UA PHP date() format string, such as j.n.Y or Y-m-d. It also accepts a PHP DATE_ constant name like DATE_ATOM or DATE_RFC2822. If you omit it, date returns the raw Unix timestamp, which is PHP format U. A colon inside a time format must be escaped as hash-colon so it is not read as an argument separator.
timestamp optional default current timeThe point in time to format, as a Unix timestamp. You normally pass a date field here. A value given as text, for example 2008-07-01 or the phrase next Monday, is parsed by PHP strtotime first. If you omit it, the current time is used.
no_date_text optional default (off)Text to print when the timestamp is unset. AA treats an empty or zero timestamp, meaning anything within one day of zero, as no date. If you leave this parameter out, an unset date is formatted normally and shows a date near 1 January 1970.
zone optional default server timezoneSet this to GMT to format the time in UTC, using PHP gmdate. Any other value, or leaving it out, formats in the server timezone. To reach this fourth parameter you must also supply the third one, so use an empty third argument if you do not need fallback text.
{date:Y}
{date:j.n.Y:0:not set}
{date:j.n.Y:1700000000}
{date:DATE_ATOM:1700000000::GMT}
{date:Y-m-d:2008-07-01}
{date:H#:i:1700000000}