diff options
Diffstat (limited to 'it.class')
-rw-r--r-- | it.class | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1054,12 +1054,14 @@ static function time() * Formats can be qualified with language, e.g. "date:en" * Special formats without language support are "icsdate", "icsdatetime". * @param stamp optional unix timestamp (default is now). - * If it contains nondigits, it is fed to strtotime + * If it contains nondigits or is a plausible 8 digit date YYYYMMDD, it is fed to strtotime */ static function date($format = "", $stamp = null) { if (!isset($stamp)) $stamp = it::time(); + else if (ctype_digit((string)$stamp) && 19000000 < $stamp && $stamp < 21000000) + $stamp = strtotime($stamp); else if (is_string($stamp) && !ctype_digit($stamp)) $stamp = strtotime(it::replace(['\s(--|\+\+)\s*(\d)' => ' +\2', '\s(\+-|-\+)\s*(\d)' => ' -\2'], $stamp), it::time()); |