まあ、私はrand();を使用しています。1 から x 量を 4 回ランドして、値が返されないようにする必要があります。
これは私のコードです:
$Count = 15;
$secondstage = '';
$arrayindex = '';
for($i=1; $i<5; $i++){
$arrayindex = rand(1,$Count);
if($secondstage == $arrayindex){
for($b=1; $arrayindex == $secondstage; $b++){
$arrayindex = rand(1,$Count);
}
}
$secondstage = $arrayindex;
echo $secondstage;
echo '<br>';
}
ここで論理的な間違いがありますか?while を使用することも考えましたが、 for も機能するはずです。