Update src/Util/DateTimeFormat.php
Co-authored-by: Hypolite Petovan <hypolite@mrpetovan.com>
This commit is contained in:
parent
045238070b
commit
0a7c9c66b5
|
@ -183,8 +183,7 @@ class DateTimeFormat
|
|||
*/
|
||||
private static function fixDateFormat(string $dateString): string
|
||||
{
|
||||
$pattern =
|
||||
[
|
||||
$patterns = [
|
||||
['#(\w+), (\d+/\d+/\d+) - (\d+:\d+)#', '$1, $2 $3'],
|
||||
['#(\d+-\d+-\d+)T(\d+:\d+:\d+)ZZ#', '$1T$2Z'],
|
||||
['#(\d+-\d+-\d+)T(\d+:\d+:\d+\.\d+)ZZ#', '$1T$2Z'],
|
||||
|
@ -192,9 +191,10 @@ class DateTimeFormat
|
|||
['#(\d+:\d+) (\w+), (\w+) (\d+), (\d+)#', '$1 $2 $3 $4 $5'],
|
||||
];
|
||||
|
||||
foreach ($pattern as $search_replace) {
|
||||
$dateString = preg_replace($search_replace[0], $search_replace[1], $dateString);
|
||||
foreach ($patterns as $pattern) {
|
||||
$dateString = preg_replace($pattern[0], $pattern[1], $dateString);
|
||||
}
|
||||
|
||||
return $dateString;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue