$array=array();
$array[1]=array(3,6,7,4,32);
$array[2]=array(3,6,7,4,32);
$array[3]=array(3,6,7,4,32);
z="";
for ($x=1;$x<count($array)+1;$x++){
$z .=$array[$x].",";
}
$f=substr($z,0,strlen($z)-1);
echo $f;
$result=array_intersect($f);
echo $result;
is it possible to store in array_intersect()the final value of $f??
lets say
$f=$array1.",".$array2.",".$array3;
then
$result=array_intersect($f);