関数range()
とを試してくださいarray_rand()
:
<?php
// range generates array with direct sequence from 1 to 60 (inclusive).
// array_rand extracts 20 random keys from it.
$range = array_rand(range(1, 60), 20);
while(count($range)){
$i = array_shift($range) + 1;
print '<a href="javascript:;"><img src="images/items/' . $i . '.png" class="allitems item' . $i . '" /></a>';
}
?>
UPDv1:ループfor
:
<?php
$range = array_rand(range(1, 60), 20);
for($i = 0; $i < 20; $i++){
$image = $range[$i] + 1;
print '<a href="javascript:;"><img src="images/items/' . $image . '.png" class="allitems item' . $image . '" /></a>';
}
unset($range, $i, $image);
?>
UPDv2:
array_rand()
説明書を読み間違えました。elementsの代わりに配列キーを返します。これが多目的バージョンです( で修正):array_flip()
<?php
header('Content-Type: text/plain');
$buffer = range(1, 60);
$buffer = array_flip($buffer);
$buffer = array_rand($buffer, 20);
foreach($buffer as $value){
echo $value, PHP_EOL;
}
?>
ショートカット機能 (ネガセーフ、全体カウントセーフ):
<?php
header('Content-Type: text/plain');
function random_range($min, $max, $count){
$count = abs((int)$count);
if($min > $max){
list($min, $max) = array($max, $min);
}
$uniques = abs($max - $min);
if($count > $uniques)$count = $uniques;
return array_rand(array_flip(range($min, $max)), $count);
}
foreach(random_range(1, 60, 20) as $value){
echo $value, PHP_EOL;
}
?>
非成長ランダムシーケンスが必要な人のための別の方法があります。これを使って:
<?php
header('Content-Type: text/plain');
function random_range($min, $max, $count){
$count = abs((int)$count);
if($min > $max){
list($min, $max) = array($max, $min);
}
$uniques = abs($max - $min);
if($count > $uniques)$count = $uniques;
$result = array();
$ready = 0;
while($ready < $count){
$buffer = rand($min, $max);
if(!in_array($buffer, $result)){
$result[] = $buffer;
$ready++;
}
}
return $result;
}
foreach(random_range(1, 60, 20) as $value){
echo $value, PHP_EOL;
}
?>
UPDv3:
range()
+ shuffle()
+を使用した別の方法array_slice()
:
<?php
header('Content-Type: text/plain');
function random_range($min, $max, $count){
$count = abs((int)$count);
if($min > $max){
list($min, $max) = array($max, $min);
}
$uniques = abs($max - $min);
if($count > $uniques)$count = $uniques;
$result = range($min, $max);
shuffle($result);
return array_slice($result, 0, $count);
}
foreach(random_range(5, 20, 5) as $random){
echo $random, ' ';
}
?>