function fillArrayNumbers(int $count = 100): array
{
$arr = [];
for ($i = 0; $i < $count-1;)
{
$alreadyThere = false;
$newRandomValue = random_int(0, $count);
for ($j = 0; $j < $i; $j++)
{
if ($arr[$j]==$newRandomValue)
{
$alreadyThere = true;
break;
}
}
if (!$alreadyThere)
{
$arr[$i] = $newRandomValue;
$i++;
}
}
return $arr;
}
Берём и пользуемся=);