I have two arrays in PHP: big and small. All the values in small arrays are included in big array. I need to get random value from big array but it will be not matched with any value of small array. Something like:
$big = array('2','3','5','7','10');
$small = array('2','5','10');
$random = '3'; // it's not 2, 5 or 10
in_array()with anif