Closed. This question needs
details or clarity. It is not currently accepting answers.
Answer
Solution:
Seems like a range:
{-code-1}
- December 3rd, 2020 @ 21:00
-
to
20210003220330
- Mystery month 3rd, 2021 @ 22:03:30
Answer
Solution:
From the format, it is pretty obvious that the format is yyyymmddhh. So for the first one it will be year 2020, month 12, day 3 hour 21. There are many ways how you can convert it to human readable format for example,
$timestamp = '2020120321';
$year = substr($timestamp, 0, 4);
$month = substr($timestamp, 4, 2);
$day = substr($timestamp, 6, 2);
$hour = substr($timestamp, 8, 2);
Source