search
HomeBackend DevelopmentPHP ProblemHow to generate unique numbers within a specified range in php

php method to generate unique numbers within a specified range: first generate random numbers through the mt_rand() function; then remove duplicate numbers through the array_flip() function. The array_flip() function is used to reverse the key names in the array and the corresponding associated key values.

How to generate unique numbers within a specified range in php

Function introduction:

(Recommended tutorial: php tutorial)

mt_rand() function Generate random integers using the Mersenne Twister algorithm. A random integer between min (or 0) and max (or mt_getrandmax()), inclusive. If max

Tip: This function is a better choice for generating random values, returning results 4 times faster than the rand() function.

array_flip() function is used to reverse/exchange the key names in the array and the corresponding associated key values. If the reversal is successful, the reversed array is returned. If the reversal fails, NULL is returned.

Code implementation:

<?php
/*
* array unique_rand( int $min, int $max, int $num )
* 生成一定数量的不重复随机数,指定的范围内整数的数量必须
* 比要生成的随机数数量大
* $min 和 $max: 指定随机数的范围
* $num: 指定生成数量
*/
function unique_rand($min, $max, $num) {
  $count = 0;
  $return = array();
  while ($count < $num) {
    $return[] = mt_rand($min, $max);
    $return = array_flip(array_flip($return));
    $count = count($return);
  }
  //打乱数组,重新赋予数组新的下标
  shuffle($return);
  return $return;
}

//生成10个1到100范围内的不重复随机数
$arr = unique_rand(1, 100, 10);
echo implode($arr, ",");
?>

Program running result:

48,5,19,36,63,72,82,77,46,16

The above is the detailed content of How to generate unique numbers within a specified range in php. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undress AI Tool

Undress AI Tool

Undress images for free

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.