This code should return TRUE value:
<?php
$return = in_array(array(1, 2), array(1, 2));
?>
but in_array returns FALSE.
|
|
Your that would be ok if your
Notice in this case If you want to check whenever 2 arrays are equal i suggest you the
|
||||
|
|
|
Based on your example, you may want to look into array_intersect(). It compares arrays in a fashion that may better align with your spec. |
|||
|
|
|
According to the PHP Manual for
So you need to supply a
That said, it might help if you explain exactly what you are trying to do. Perhaps |
|||
|
|
|
Your first array isn't contained in the second array, it's equal. This returns true:
|
|||
|
|
|
First parameter is the value you're looking for in the second parameter (array) http://php.net/manual/fr/function.in-array.php |
|||
|
|
|
you missunderstand in_array see offiziell docs: http://uk.php.net/in_array
|
|||
|
|
|
array(1,2) is not in array(1,2) it is array(1,2),
would return true. (more an extension of yes123's answer) |
|||
|
|
|
Are you interested in intersection?
|
|||
|
|
|
In your case, the first parameter of in_array should not be an array, but an integer. What you are doing with that code is checking for the presence of an array inside the array, which is not there. A correct form would be:
|
||||