Hello forums!!!
Case:
Suppose we have two arrays(returned by queries)
$array1 and $array2 of different sizes for example (two cases here)
a>
$array1 = array(1,2,3);
$array2 = array(1,2);
b>
$array1 = array(1);
$array2 = array(1,2,4,5);
I would like to check presence of any values of $array1 in $array2.
How to accomplish this, any ideas.
Thanks in advance for the suggestions.