shuffle
(PHP 3 >= 3.0.8, PHP 4, PHP 5)
shuffle -- 将数组打乱
说明
bool
shuffle ( array &array )
本函数打乱(随机排列单元的顺序)一个数组。
注: 本函数为
array 中的单元赋予新的键名。这将删除原有的键名而不仅是重新排序。
例子 1. shuffle() 例子
<?php $numbers = range(1,20); srand((float)microtime()*1000000); shuffle($numbers); foreach ($numbers as $number) { echo "$number "; } ?>
|
|
参见
arsort(),asort(),ksort(),rsort(),sort()
和 usort()。