Hello all,
I have a multidimentional array
$array_name[value?][]
$array_name[value?][]
$array_name[value?][].... etc
which I would like to compare using the array_intersect comand.
in long hand would look like
$result = array_intersect($array_name[value?],$array_name[value2],....etc);
Is there a realy neat way of passing these changing number of arrays to a function.
I hope I made sense, and if I have asked an old question I have looked honest !!
Thank you in advance
Thomas Ashbee