And another weird date format

This commit is contained in:
Michael 2022-10-07 19:56:02 +00:00
parent 885f90afa3
commit 1ddeaaad4a
1 changed files with 1 additions and 0 deletions

View File

@ -190,6 +190,7 @@ class DateTimeFormat
['#(\w+), (\d+ \w+ \d+) (\d+:\d+:\d+) (.+)#', '$2 $3 $4'],
['#(\d+:\d+) (\w+), (\w+) (\d+), (\d+)#', '$1 $2 $3 $4 $5'],
['#(\w+ \d+, \d+) - (\d+:\d+)#', '$1, $2'],
['~(\d+-\d+-\d+)T(\d+:\d+:\d+)+(\d+:\d+)~', '$1T$2+$3'],
];
foreach ($patterns as $pattern) {