Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Generate Array of Random Unique Numbers in PHP



For random unique numbers array, use range() along with shuffle().

Example

The PHP code is as follows

 Live Demo

<!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>

Output

This will produce the following output

Array ( [0] => 11 [1] => 14 [2] => 15 [3] => 12 [4] => 18 )
Updated on: 2020-10-13T08:37:21+05:30

891 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements