使用
array_keys + shuffle
解决。
例子:
$theRandListArray = array_keys($RadioListArray[$questionID]);
shuffle($theRandListArray);
foreach ($theRandListArray as $theRandRadioID) {
$theRadioListArray[$theRandRadioID] = $RadioListArray[$questionID][$theRandRadioID];
}