Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am not getting what is wrong with this code. It's returning "Found", which it should not.

$lead = "418176000000069007";
$diff = array("418176000000069003","418176000000057001");

if (in_array($lead,$diff))
    echo "Found";
else
    echo "Not found";
share|improve this question
74  
The fact that PHP is a broken language. – ThiefMaster May 2 '12 at 6:31
2  
Can you reproduce it with non numbers? – Preet Sangha May 2 '12 at 6:32
27  
@ThiefMaster Too easy to bash. Please provide an answer instead of a rant next time :) – Clement Herreman May 2 '12 at 9:05
3  
@ClementHerreman: There were already good answers ;) – ThiefMaster May 2 '12 at 10:14
5  
Here is a related bug entry: bugs.php.net/bug.php?id=54547. It is quite a humorous read. – Vinnyq12 May 2 '12 at 13:28
show 5 more comments

9 Answers

up vote 50 down vote accepted

I think it is because of the limitations of the number storage. The values exceed PHP_INT_MAX.

Try without using the quotes, and try to echo the values of the variables. It will result in something like

$lead ---> 418176000000070000  
$diff ---> Array ( [0] => 418176000000070000 [1] => 418176000000060000 )

so in this case the in_array result is true!

so use strict comparison in in_array() by setting third argument in in_array() as true

     if(in_array($lead,$diff,true)) //use type too
       echo "Found";
     else
       echo "Not found";
?>

Try this. It will work.

share|improve this answer

By default, in_array uses loose comparison (==), which means these strings are converted to numbers and compared as numbers. If you don't have enough precision, the difference is lost and you get the wrong answer.

The solution is to turn on strict comparison (===) by passing an extra Boolean parameter to in_array:

  $lead = "418176000000069007";
  $diff = array("418176000000069003", "418176000000057001");

  if ( in_array($lead, $diff, true) ) 
    echo "Found";
  else
    echo "Not found";
share|improve this answer
9  
This is the most informative answer. +1 – Sarfraz May 2 '12 at 6:34
As far as I know == doesn't convert strings to numbers. It converts types if they're different, but comparing two strings IMHO doesn't – Gavriel May 2 '12 at 6:54
10  
@gavriel: that's unfortunately not true; if a string looks like a number, it is converted to one. Add some zeros so that a numeric comparison loses precision even on your 64-bit install, and it's easy to demonstrate: php -r 'echo("4181760000000000069003" == "4181760000000000057001"),"\n";' returns 1. – Mark Reed May 2 '12 at 12:17
so in your opinion $lead = "001"; $arr = array("1","01"); echo in_array($lead, $arr); should return true? – Tomer W May 2 '12 at 12:33
8  
@tomerw: the question is answered, so we shouldn't go off on a tangent in the comments; feel free to start a chat if you like. But I'll say that (1) your code does, in fact, return 1 (=true), and (2) I've long since given up on PHP's behavior bearing any resemblance to my opinion of what it "should" do. :) – Mark Reed May 2 '12 at 13:09
show 1 more comment

It's because of one defect in PHP. 418176000000069007 is modified to 2147483647 (integer limit of PHP). That is why you are getting Found.

try in_array($lead, $diff, true)

If the third parameter strict is set to TRUE then the in_array() 
function will also check the types of the needle in the haystack. 
share|improve this answer
ohhh...god...i almost tried every combination...anyways is there any solution ?? – www.amitpatil.me May 2 '12 at 6:33
9  
The question is, why does it cast it to an int at all? – deceze May 2 '12 at 6:33
3  
@Amit Set $strict to true: in_array($lead, $diff, true) – deceze May 2 '12 at 6:33
Ahhaaaa....@deceze...ur suggestion worked perfect for me...many thanks. – www.amitpatil.me May 2 '12 at 6:37

The values exceed PHP_INT_MAX. Try doing if(in_array($lead,$diff,true)) instead.

share|improve this answer

Try using brackets and use strict mode:

$lead = "418176000000069007";
$diff = array("418176000000069003","418176000000057001");

if(in_array($lead, $diff, true)) {
    echo "Found";
} else {
    echo "Not found";
}
share|improve this answer

in_array should be stricted.

$lead = "418176000000069007";
  $diff = array("418176000000069003","418176000000057001");

  if(in_array($lead,$diff,true)) 
    echo "Found";
  else
    echo "Not found";

This problem is due to your numbers are exceeded from the defined integer limit

Note: the maximum value depends on the system. 32 bit systems have a maximum signed integer range of -2147483648 to 2147483647. So for example on such a system, intval('1000000000000') will return 2147483647. The maximum signed integer value for 64 bit systems is 9223372036854775807.

share|improve this answer

If the third parameter strict is set to TRUE then the in_array() function will also check the types of the needle in the haystack, and because the limit is beyond the maximum integer value.

So 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. Check the PHP manuals.

if (in_array($lead,$diff,true))
share|improve this answer
Thank You Peter – Akshat Sharma May 3 '12 at 5:02

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.

share|improve this answer

If that is your problem and you really want to compare/find in array then there is a trick

$lead = "a418176000000069007";
$diff = array("a418176000000069003","a418176000000057001");

if (in_array($lead,$diff))
    echo "Found";
else
    echo "Not found";

i.e. somehow you have to prepend a perticular character to every number. They will behave as strings in comparison and hence give correct result.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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