Home Backend Development PHP Tutorial Program to randomly generate a set of non-repeating numbers in PHP_PHP Tutorial

Program to randomly generate a set of non-repeating numbers in PHP_PHP Tutorial

Jul 13, 2016 pm 04:56 PM
php under No introduce accomplish number of program repeat random

The following is an introduction to two program codes for randomly generating a set of non-repeating numbers in PHP. Friends who need to learn can refer to them.

The code is as follows
 代码如下 复制代码

/**
* PHP获取一组随机数字不重复
*/
$a = microtime();
function createRandID($m){
// 产生一个从1到$m的数组
$arr = range(1,$m);
// 打乱数组
shuffle ($arr);
// 取前十个
for($i=0;$i<=10;$i++){
// 赋值给新数组$n
$n[] = $arr[$i];
}
// 返回这组数字
return implode($n,',');
}

echo createRandID(700000);
echo '
';
echo $a - microtime();
?>

Copy code

/**

* PHP gets a set of random numbers without repetition

​*/

$a = microtime();

function createRandID($m){

// Generate an array from 1 to $m

$arr = range(1,$m);

//Shuffle the array
代码如下 复制代码

/**
* PHP获取一组随机数字不重复
* 琼台博客
*/
$a = microtime();
function createRandID($m){
// 注意,要先声明一个空数组,否则while里的in_array会报错
$arr = array();
// 使用while循环,只要不够10个就永远循环
while(count($arr)<=10){
// 产生一个随机数
$a = rand(1,$m);
// 判断:如果产生的随机数不再数组里就赋值到数组里
// 主要避免产生重复的数字
if(!in_array($a,$arr)){
// 把随机数赋值到数组里
$arr[] = $a;
}
}
// 返回产生的随机数字
return implode($arr,',');
}
echo createRandID(700000);
echo '
';
echo $a - microtime();
?>

Shuffle ($arr);

// Take the first ten

for($i=0;$i<=10;$i++){

// Assign a value to the new array $ n
         $n[] = $arr[$i];                                                }

// Return this set of numbers

Return implode($n,',');

}


echo createRandID(700000);

echo '
';

echo $a - microtime();

?>

Execution result:

0.672761 As you can see from the above results, the time spent is 0.6. Let’s adjust the random number range from 700000 to 900000 and look at the execution results Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 7200000 bytes) in /data0/htdocs/www/a.php on line 10 The array is too big and the program cannot run! !
The code is as follows Copy code
/** * PHP gets a set of random numbers without repetition
* Qiongtai Blog
​* Qiongtai Blog <🎜> */<🎜> $a = microtime(); <🎜> function createRandID($m){ <🎜> // Note, you must first declare an empty array, otherwise in_array in while will report an error <🎜> $arr = array(); <🎜> // Use a while loop, as long as there are less than 10, it will loop forever <🎜> While(count($arr)<=10){ <🎜> // Generate a random number <🎜>           $a = rand(1,$m); <🎜> // Judgment: If the generated random number is no longer in the array, assign it to the array <🎜>                       // Mainly to avoid duplicate numbers <🎜> If(!in_array($a,$arr)){ <🎜> //Assign random numbers to the array <🎜>                $arr[] = $a;                                                               } <🎜> } <🎜> // Return the generated random number <🎜> Return implode($arr,','); <🎜> } <🎜> echo createRandID(700000); <🎜> echo '
'; echo $a - microtime(); ?> Execution result: 308326,155128,280424,493174,214855,219990,482837,66329,512934,232527,386975 0.00015699999999996 As can be seen from the above execution results, the time can be ignored at all. Let’s adjust the random number range from 700000 to 999999 and take a look at the execution results 392281,822956,401282,176255,143076,501802,393338,546922,21836,601991,362006 0.00013600000000002 The execution result has nothing to do with the maximum value setting, it still runs very fast! http://www.bkjia.com/PHPjc/631573.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/631573.htmlTechArticleThe following is an introduction to two program codes for randomly generating a set of non-repeating numbers in PHP. Friends who need to learn Can be used for reference. The code is as follows Copy code ?php /** * PHP gets a set of random...
Statement of this Website
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

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.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

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

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Logging CakePHP Logging Sep 10, 2024 pm 05:26 PM

Logging in CakePHP is a very easy task. You just have to use one function. You can log errors, exceptions, user activities, action taken by users, for any background process like cronjob. Logging data in CakePHP is easy. The log() function is provide

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

See all articles