Home Backend Development PHP Tutorial rand() function for php random number generation

rand() function for php random number generation

Nov 10, 2017 pm 02:46 PM
php rand random number

I believe everyone is familiar with the rand() function. Many friends have come to this function during the development process. They all know that this function generates PHP random numbers, and the rand() function returns PHP random numbers.INTEGER! Today I will take you to learn more about the rand() function of random number generation in PHP!

First, let’s get to know the random number function rand() provided by php. The rand() function of php will return a random integer. The specific usage is as follows:

rand(min,max)
Copy after login

The optional parameters min and max can be Make rand() return a pseudo-random integer between 0 and rand_max. For example, if you want a random number between 5 and 15 (including 5 and 15), use rand(5, 15).

Below I Let's look at a specific example. We make a basic function call without setting specific parameters. The random number we get will not be limited by the min and max parameters. The code is as follows:

The result obtained :652696728 (Random result) 1. Use PHP to generate random numbers within the specified interval. If we want to generate random numbers between two numbers, we need to set two parameters for rand: In this way, the result we get is in our Under control, it should be minnum <= result <= maxnum; assuming we want to use php to generate a random number between 10000 and 2000, our code should be written like this:

echo(rand(1000,2000));?>
Copy after login

It’s simple enough, Let’s do something a little more difficult. At the beginning of this article, we said that random numbers play a great role. We can use PHP random numbers to solve some complex problems. 2. Using PHP to obtain random elements in a set will set what we need To get a random element from an array, the code is as follows:

$my_array=array(&#39;asp&#39;,&#39;php&#39;,&#39;网页&#39;,&#39;ajax&#39;,&#39;css&#39;,&#39;jquery&#39;,&#39;html&#39;);  
echo($my_array[rand(0,6)]);
Copy after login

It is conceivable that the result we get may be any element contained in the array such as asp, php or javascript. Note , our my_array array contains seven elements, we set the parameters of rand() between 0 and 6, below we use two sets of random numbers to enhance the function of the above example, we need a The random number is used for conditional judgment, and another random number is used as the output of the element. The code is as follows:

$my_array=array(&#39;asp&#39;,&#39;php&#39;,&#39;javascript&#39;,&#39;ajax&#39;,&#39;css&#39;,&#39;jquery&#39;,&#39;html&#39;);  
$repetition=rand(0,6);  
for($i=0;$i<=$repetition;$i++){  
echo(&#39;i am learning &#39; . $my_array[rand(0,6)]);  
echo(&#39; on 51cto.com&#39;);  
}
Copy after login

The result we get may be like the following:

First run We got three results. Since we used a random number to limit the number of displayed results, in addition to the random articles, the results we got were also random.

The second run got seven results

Maybe you will ask, can PHP random numbers only do these boring things? rand() does not seem to be that important; you are wrong, think about the verification codes and some cms that can be seen everywhere Systematic random article extraction, download address allocation, etc. Random numbers play an important role in these applications. In addition, in the field of security and algorithms, many applications of random numbers are also worthy of our in-depth study, such as encryption and congruence structures. The code is as follows:

$ip2id= round(rand(600000, 2550000) / 10000); //第一种方法,直接生成  
$ip3id= round(rand(600000, 2550000) / 10000);  
$ip4id= round(rand(600000, 2550000) / 10000);  
//下面是第二种方法,在以下数据中随机抽取  
$arr_1 = array("218","218","66","66","218","218","60","60","202","204","66","66","66","59","61","60","222",
"221","66","59","60","60","66","218","218","62","63","64","66","66","122","211");  
$randarr= mt_rand(0,count($arr_1)-1);  
$ip1id = $arr_1[$randarr];  
echo $ip1id;  
echo ".";  
echo $ip2id;  
echo ".";  
echo $ip3id;  
echo ".";  
echo $ip4id;  
?>
Copy after login

Summary:

This article is to introduce to you the rand() function for generating random numbers in PHP. For many friends It is a very good choice for us, I hope it will be helpful to your work~

Related recommendations:

Methods to generate php random numbers from numbers and letters


Five ways to generate php random numbers without repeating


php random number generation method


The above is the detailed content of rand() function for php random number generation. For more information, please follow other related articles on the PHP Chinese website!

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 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

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.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

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

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 Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles