I am pulling data from an JSON database that is storing the time in unix epoch but for some reason the numbers are being floated when I'm pulling them out. This is something I've never had to deal with before. So basiclly a number like 1293083730000 is showing up as 1.293085408E+12 I need to get the number back to the epoch time so I can compare it to the current time. Any help would be great.
| |||||||||
feedback
|
|
That's engineering notation, a convenient method of writing large numbers. The number is still an integer. The problem is is that PHP's internal types are too small to represent the number as a decimal, see the following example:
This outputs:
You need either a 64-bit platform or work with the number as a string or floating point value. See the PHP documentation on Integers for more details: | |||||||||||||||||
feedback
|
|
php.ini config file has a value 'precision'. It simply defines how many number will shown in a float number. Info: http://php.net/manual/en/ini.core.php#ini.precision You can increase the precision value and try again. | |||
|
feedback
|