I want to get a random select from an array, but it does show other number that is not from my selected arrays.
<?php
$MainArray = array(
'IC' => array(4,19,22,42,61,80,82,88),
'IR' => array(9,12,17,45,46,67,68,89),
'JP' => array(6,26,39,53,93),
'DP' => array(1,8,14,35,38,59,70,71),
'TA' => array(0,2,3,5,7,10,11,13,15,16,18,20,21,23,24,25,27,28,29,30,31,32,33,34,36,37,40,41,43,44,47,48,49,50,51,52,54,55,56,57,58,60,62,63,64,64,66,69,72,73,74,75,76,77,78,79,81,83,84,85,86,87,90,91,92,94,95,96,97,98,99)
);
$ArrayNumbers = array_merge($MainArray['IC'], $MainArray['IR'], $MainArray['TA'], $MainArray['DP']);
$setSelectedNumber = array_rand($ArrayNumbers);
if(in_array($setSelectedNumber, $MainArray['JP'])){
echo 'ERROR FOUND: '.$setSelectedNumber;
}else{
echo $setSelectedNumber;
}
?>
Am hoping to get a randomly match number from the merged arrays, but it also shows number from the JP
array 6,26,39,53,93
which I don't want.