Question

Maybe someone can help me find the array intersection of a multidemsional array like this one:

[attributes] => Array
                (
                    [Color] => Array
                        (
                            [0] => Cool White
                            [1] => Warm White
                        )

                    [LED Amount] => Array
                        (
                            [0] => 30 LEDs
                        )

                )

[FILTER] => Array
                (
                    [Color] => Array
                        (
                            [0] => Warm White
                        )

                )

I have tried the following code, but the problem is the multi-dimensional array.

$intersection = array_intersect($arry['FILTER'], $arry['attributes']);

Thanks for your help.

Was it helpful?

Solution

Try this function array_uintersect_assoc

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top