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.
in_array($key, (array) $instance['cfl2'])– Bob Sponge Jan 22 at 12:31gettype($instance['cfl2'])? – Dan Lee Jan 22 at 12:31string(6) "age"– Bob Sponge Jan 22 at 12:37