Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

AFAIK - in_array() should return TRUE or FALSE.

In my case, It does validate as true - but still throwing an error:

[function.in-array]: Wrong datatype for second argument

The line is this :

in_array($key,$instance['cfl2']);

and the $instance['cfl2'] is a verified array which looks like this :

array(2) { [0]=> string(8) "price" [1]=> string(6) "age" }

My questions are :

  • What am I doing wrong.
  • Why it is throwing an error (but still working fine and returns true)
  • Is the problem occur because I use some kind of nested array ? (meaning that an array item $instance['cfl2'] is actually an array by itself ?

I also tried $is = $instance['cfl2'] and in_array($key,$is) - but the result was the same error.

share|improve this question
1  
Try in_array($key, (array) $instance['cfl2']) – Bob Sponge Jan 22 at 12:31
2  
This is odd. What says gettype($instance['cfl2'])? – Dan Lee Jan 22 at 12:31
@BobSponge - hmmmm - seems to be working . no error ! thanks . add it as an answer and I will accept it . but may I also know WHY is it doing so, and if there is an error , why it still validates as true ?? – Obmerk Kronen Jan 22 at 12:33
3  
Why length of "age" is 6? string(6) "age" – Bob Sponge Jan 22 at 12:37
@BobSponge hmm - good question . also why price is (8) . maybe it is part of the problem ? the array might have non-english characters. itmight got something to do with another question that I posted today - stackoverflow.com/questions/14452324/… – Obmerk Kronen Jan 22 at 13:48
show 3 more comments

3 Answers

up vote 1 down vote accepted

You can cast a variable to an array to avoid this error:

in_array($key, (array) $instance['cfl2'])

share|improve this answer

$instance = your array values

in_array($key,$instance );

my example

$lines = array('0' => 2, '1' => 3);
if(in_array(2, $lines)) { echo 'yes';}
share|improve this answer

in_array() will deal as in_array("search", $instance).

If you are using a nested or multidiamentional array, then in_array() wont work and you should write a separate function to handle this. Or use array_key_exists() instead. It will work for certain specific situations. Find out if your requirement is met.

ie

if(array_key_exists($key,$instance['cfl2']))
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.