在我的php脚本中,我有一个变量$ data,其中包含一个可能包含不同数量元素的数组。
脚本随机选取一个数组元素并将其输出到浏览器:
# count number of elements in $data
$n = count($data);
# pick a random number out of the number of elements in $data
$rand = rand(0, ($n - 1));
# output a random element
echo '<p> . trim($data[$rand]) . '</p>';
问题:我想改进那个脚本,以便它在数组元素耗尽之前不会再次输出相同的数组元素。例如,如果一个数组包含编号为0到9的元素,并且脚本选择了数组元素#4,我希望它能够记住,并且下次运行脚本时,要排除#4元素。
它可能以多种不同的方式完成,但我正在寻找最简单,最优雅的解决方案,并感谢PHP专家的帮助。
答案 0 :(得分:2)
保存已在用户会话中选择的号码。
session_start();
$n = count($data);
// If the array isn't initialized, or we used all the numbers, reset the array
if( !isset( $_SESSION['used_nums']) || count( $_SESSION['used_nums']) == $n) {
$_SESSION['used_nums'] = array();
}
do{
$rand = rand(0, ($n - 1));
} while( isset( $_SESSION['used_nums'][$rand]));
echo '<p>' . trim($data[$rand]) . '</p>';
$_SESSION['used_nums'][$rand] = 1;
或者,使用array_intersect_key
和array_rand
可能是一种更聪明的方式:
session_start();
$n = count($data);
// If the array isn't initialized, or we used all the numbers, reset the array
if( !isset( $_SESSION['used_nums']) || count( $_SESSION['used_nums']) == $n) {
$_SESSION['used_nums'] = array();
}
$unused = array_intersect_key( $data, $_SESSION['used_nums'];
$rand = array_rand( $unused);
echo '<p>' . trim($unused[$rand]) . '</p>';
$_SESSION['used_nums'][$rand] = 1;
答案 1 :(得分:2)
你可以随机播放数组,然后简单地迭代它:
shuffle($data);
foreach ($data as $elem) {
// …
}
如果你不想改变数组顺序,你可以简单地改组数组的键:
$keys = array_keys($data);
shuffle($keys);
foreach ($keys as $key) {
// $data[$key]
}
答案 2 :(得分:1)
您可以使用会话来存储您目前使用的索引。试试这个。
session_start();
$used = &$_SESSION['usedIndexes'];
// used all of our array indexes
if(count($used) > count($data))
$used = array();
// remove the used indexes from data
foreach($used as $index)
unset($data[$index]);
$random = array_rand($data);
// append our new index to used indexes
$used[] = $random;
echo '<p>', trim($data[$random]) ,'</p>';
答案 3 :(得分:0)
$selection=$x[$randomNumber];
unset($x[$randomNumber]);