Currently, I have 36 variables that are being shuffled (for a really specific WP reason). Anyways so once the variables have shuffled, I am trying to match them with a name. So if $numbers[0] equals lets say 1, then it is supposed to print "John". I am currently using 36 switch case statements to achieve this and I know this is super inefficient. So I was wondering if there was a smarter way to do this?
Here's my code (for example's sake I am only showing 3 variables & 3 switch cases):
$numbers = range(1, 3);shuffle($numbers);
switch ($numbers[0]){
case "1":
echo $numbers[0] . " is John";
break;
case "2":
echo $numbers[0] . " is Jane";
break;
case "3":
echo $numbers[0] . " is Mirza";
break;
}
switch ($numbers[1]){
case "1":
echo $numbers[1] . " is John";
break;
case "2":
echo $numbers[1] . " is Jane";
break;
case "3":
echo $numbers[1] . " is Mirza";
break;
}
switch ($numbers[2]){
case "1":
echo $numbers[2] . " is John";
break;
case "2":
echo $numbers[2] . " is Jane";
break;
case "3":
echo $numbers[2] . " is Mirza";
break;
}