How to use rand() function in php
Apr 29, 2024 am 10:57 AMThe rand() function in PHP is used to generate random integers ranging from 0 to RAND_MAX (default 2147483647). You can specify the minimum and maximum values as parameters, and the function returns a random integer between the two values.
Usage of rand() function in PHP
rand() function is a built-in function for Generate random numbers. It generates a random integer ranging from 0 to RAND_MAX, which is a constant and defaults to 2147483647.
Syntax:
int rand([int $min [, int $max]])
Parameters:
- $min: (optional ) specifies the minimum value of the random number, the default is 0.
- $max: (optional) Specifies the maximum value of the random number, the default is RAND_MAX.
Return value:
The function returns a random integer between $min and $max (inclusive of bounds).
Example:
// 生成一个随机数(0-2147483647) $num = rand(); // 生成一个随机数(10-100) $num = rand(10, 100);
Note:
- rand() function can only generate pseudo-random numbers. The randomness on depends on the input (seed).
- If the rand() function is called multiple times in the same script, predictable random numbers will be generated. To get truly random numbers, you need to use the mt_rand() or random_int() function.
The above is the detailed content of How to use rand() function in php. For more information, please follow other related articles on the PHP Chinese website!

Hot Article

Hot tools Tags

Hot Article

Hot Article Tags

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

11 Best PHP URL Shortener Scripts (Free and Premium)

Working with Flash Session Data in Laravel

6 Extra Skills Every PHP Developer Should Have

Simplified HTTP Response Mocking in Laravel Tests

Build a React App With a Laravel Back End: Part 2, React

cURL in PHP: How to Use the PHP cURL Extension in REST APIs

12 Best PHP Chat Scripts on CodeCanyon
