Search w3schools.com:

SHARE THIS PAGE

PHP rand() Function


PHP Math Reference Complete PHP Math Reference

Definition and Usage

The rand() function generates a random integer.

If this function is called without parameters, it returns a random integer between 0 and RAND_MAX.

If you want a random number between 10 and 100 (inclusive), use rand (10,100).

Syntax

rand(min,max)

Parameter Description
min,max Optional. Specifies the range the random number should lie within


Tips and Notes

Note: On some platforms (such as Windows) RAND_MAX is only 32768. So, if you require a range larger than 32768, you can specify min and max, or use the mt_rand() function instead.

Note: In PHP 4.2.0 and later, there is no need to seed the random generator with srand(). This is done automatically.

Tip: The mt_rand() function generates a better random value than this function!


Example

In this example we will return some random numbers:

<?php
echo(rand() . "<br />");
echo(rand() . "<br />");
echo(rand(10,100))
?>

The output of the code above could be:

17757
3794
97


PHP Math Reference Complete PHP Math Reference

W3Schools Certification

W3Schools' Online Certification

The perfect solution for professionals who need to balance work, family, and career building.

More than 10 000 certificates already issued!

Get Your Certificate »

The HTML Certificate documents your knowledge of HTML.

The HTML5 Certificate documents your knowledge of advanced HTML5.

The CSS Certificate documents your knowledge of advanced CSS.

The JavaScript Certificate documents your knowledge of JavaScript and HTML DOM.

The jQuery Certificate documents your knowledge of jQuery.

The XML Certificate documents your knowledge of XML, XML DOM and XSLT.

The ASP Certificate documents your knowledge of ASP, SQL, and ADO.

The PHP Certificate documents your knowledge of PHP and SQL (MySQL).

Your suggestion:

Close [X]

Thank You For Helping Us!

Your message has been sent to W3Schools.

Close [X]