Ljyiafbzfssbq
New Member
I have a multidimensional array that looks like this:\[code\]Array([0] => Array ( [0] => Array ( [id] => 3 ) [1] => Array ( [id] => 1 ) [2] => Array ( [id] => 2 ) [3] => Array ( [id] => 5 ) [4] => Array ( [id] => 4 ) )[1] => Array ( [0] => Array ( [id] => 1 ) [1] => Array ( [id] => 3 ) [2] => Array ( [id] => 4 ) [3] => Array ( [id] => 5 ) )[2] => Array ( [0] => Array ( [id] => 3 ) ))\[/code\]I need to find a way to return the intersecting value(s). In this case that would be \[code\][id] => 3\[/code\]The length of the array could be different, so I can't just use array_intersect().I feel like this should be easy, but I'm totally stuck!Can anyone help?(-:/Jakob