Matt C.
Well-known member
I'm importing JSON data and one of the values is a UTC timestamp. Example
When I try to import it with my cron entry I get the following error:
If I do this to try to convert it to a UNIX timestamp
Does anyone know what to do? Thank you.
1544554860000
. When I try to import it with my cron entry I get the following error:
Code:
Please enter a number that is no more than 4294967295.
If I do this to try to convert it to a UNIX timestamp
strtotime($timestamp)
, I get this:
Code:
Please enter a number that is at least 0.
Does anyone know what to do? Thank you.