Hello,
I have 2 multi-dim arrays like:
Array ( [0] => Array ( [0] => 2 [1] => 1 ) [1] => Array ( [0] => 5 [1] => 1 ) [2] => Array ( [0] => 5 [1] => 2 ) )
and the second one having similar structure but different data.(eg 1=>array(\"0\",\"4\"),2=>array(\"5\",\"6\")) ...etc
Still array_intersect($array1,$array2) doesn\'t work.Same for array_diff().Is there any work around/(already implemented) or have to code it from the scratch?
Thank you, Luci L.