I have a php multidimensional array (2 levels) with some values and I want to identify what values are present in all arrays.
Array
(
[1] => Array
(
[0] => 1
[1] => 3
)
[2] => Array
(
[0] => 1
[1] => 2
)
[3] => Array
(
[0] => 1
[1] => 3
)
)
....in our case value 1 is present in all 2nd level arrays. Is there a way to identify that?