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.

link|improve this question

Strange. The code to retrieve the data? – ring0 Dec 23 '10 at 6:12
@ring0 um... what? – BandonRandon Dec 23 '10 at 6:18
Your time appears to be in milliseconds, the epoch time 1293083730 is for Thu Dec 23 00:55:30 2010 – Steve-o Dec 23 '10 at 6:30
You're right, it's ms since the epoch. – BandonRandon Dec 23 '10 at 7:01
feedback

2 Answers

up vote 3 down vote accepted

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:

<?
$i = 1293083730000;
echo "\$i is $i\n\n";
echo sprintf("\$i is %d\n\n", $i);
echo sprintf("\$i is %e\n\n", $i);
?>

This outputs:

$i is 1293083730000

$i is 298573904

$i is 1.293084e+12

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:

http://php.net/manual/en/language.types.integer.php

link|improve this answer
+1. Correct, nothing to see here... – Arafangion Dec 23 '10 at 6:15
Okay, how do I convert engineering notation to epoch? I'm bad with numbers. I've tried to use floor() and round() EDIT so i'm screwed? – BandonRandon Dec 23 '10 at 6:20
2  
@BrandonRandon, divide by 1000 first then everything should work normally. – Steve-o Dec 23 '10 at 6:31
1  
I deleted my answer: if you are running with a 32 bit OS, PHP unlike Java is not able to deal with 64-bits integers. Steve-o is correct - just divide your number by 1000, then you enter the 32-bits integer range, and you can treat it as an integer (since time() returns a value in seconds, not ms, you are ok to compare your new value with time() directly). – ring0 Dec 23 '10 at 6:48
1  
@BandonRandon No, you can use that number directly, and compare it with the return value of PHP time() function. Why isn't it the correct time ? it looks like an unix epoch time to me. – ring0 Dec 23 '10 at 7:04
show 4 more comments
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.

link|improve this answer
shared host no control over php.ini...Boo – BandonRandon Dec 23 '10 at 11:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.