search
HomeBackend DevelopmentPHP ProblemTwo ways to generate random numbers in php

Two ways to generate random numbers in php

May 08, 2021 am 09:29 AM
phprandom number

Two ways to generate random numbers in php

In order to create some contingency in php, we may need to set the values ​​​​of some variables to random. In order to solve this problem, php has built-in functions rand() and mt_rand() functions to solve this problem.

First let’s take a look at the syntax of the mt_rand() function:

mt_rand    ( int $min   , int $max   )
  • $min: Optional, the minimum value of the generated number

  • $max: Optional, the maximum value of the generated number

  • Return value: If there is no minimum value and maximum value, a random value will be returned The maximum possible value of a number, if any, between the minimum and maximum values.

Code example:

<?php
echo mt_rand();
echo "<br>";
echo mt_rand(10,100);
?>
输出:
1144620466 //随机不一定相同
12         //随机不一定相同

Note: mt_rand()generates random values ​​faster on average than rand() Four times.

Recommended: 2021 PHP interview questions summary (collection)》《php video Tutorial

The above is the detailed content of Two ways to generate random numbers 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

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

Video Face Swap

Video Face Swap

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

Hot Article

Hot Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool