From PHP Manual: String conversion to numbers:
When a string is evaluated in a numeric context, the resulting value
and type are determined as follows.
The string will be evaluated as a float if it contains any of the
characters '.', 'e', or 'E'. Otherwise, it will be evaluated as an
integer.
As some others mentioned, you should use strict for in_array:
bool in_array ( mixed $needle , array $haystack [, bool $strict =
FALSE ] ) Searches haystack for needle using loose comparison unless
strict is set.
Some mentioned PHP_INT_MAX. This would be 2147483647 on my system. I'm not quite sure if this is the problem as the manual states:
If PHP encounters a number beyond the bounds of the integer type, it
will be interpreted as a float instead. Also, an operation which
results in a number beyond the bounds of the integer type will return
a float instead.
But floating point precision should be high enough...
Whatever might be the "real" source of this problem, simply use strict for in_array to fix this problem.