配列をランダムにシャッフルする

//---------------------------------------------
// ランダム化
//---------------------------------------------
// 乱数生成
function make_seed(){
	list($usec, $sec) = explode(' ', microtime());
	return (float) $sec + ((float) $usec * 100000);
}
srand(make_seed());
$randval = rand();
// シャッフル
shuffle($array);
$i = 0;
while($array[$i] != ''){
	echo $array[$i];
	$i ++;
}

コメントを残す