Computer >> 컴퓨터 >  >> 프로그램 작성 >> PHP

PHP에서 임의의 고유 숫자 배열을 생성하시겠습니까?

<시간/>

임의의 고유 숫자 배열의 경우 shuffle()과 함께 range()를 사용합니다.

예시

PHP 코드는 다음과 같습니다

<!DOCTYPE html>
<html>
<body>
<?php
$limit_random_array_values = range(10, 20);
shuffle($limit_random_array_values);
$all_five_random_array_value = array_slice($limit_random_array_values ,0,5);
print_r($all_five_random_array_value);
?>
</body>
</html>

출력

그러면 다음과 같은 출력이 생성됩니다.

Array ( [0] => 11 [1] => 14 [2] => 15 [3] => 12 [4] => 18 )