Zufallszahlengenerator in PHP

王林
Freigeben: 2024-08-29 13:13:13
Original
637 Leute haben es durchsucht

In this article, we will be learning about a random number generator in PHP. So what is random number generator?

We can generate random numbers or integers using built-in functions. What do these functions do? These functions within a range of min and max generate different sets of numbers. And every time you call this function it will generate a number that is unique. We can generate any numbered digits like 2digit number, 3digit number and so on.

ADVERTISEMENT Popular Course in this category PHP DEVELOPER - Specialization | 8 Course Series | 3 Mock Tests

Start Your Free Software Development Course

Web development, programming languages, Software testing & others

The numbers get shuffled within the range and are generated accordingly. There are various built-in functions to generate random numbers.

Random Number Generator Functions

Now we will be learning about different functions that generate pseudo-random numbers:

  • rand() function without range, rand() function with range:This function when called returns a random number. When the min and max are provided to the function, it generates a random number within the range.
  • mt_rand() function:This function is similar to rand(). mt in mt_rand() stands for Mersenne Twister. The mt_rand() function is a random number generator and returns an integer value. It generates a pseudo-random number like the rand() function does. It was the first pseudo-random number generator. It is an advanced form of older random number generator. It is fast, efficient and provides high-quality integers.
  • getrandmax() function:There are no parameters defined for this function and as the name suggests it returns the largest or maximum possible random number.
  • mt_getrandmax() function:It is similar to getrandmax() function and it also returns the largest or maximum possible random number. Here again mt stands for Mersenne Twister which is an algorithm for generating random numbers.
  • srand(seed) function:This function seeds the random number generator with the given seed value if not given this function seeds with a random number
  • mt_srand(seed):This function is similar to srand() function and this function seeds the random number generator with the given seed value.

We will learn the syntax followed by the examples of each type of function mentioned.

1. rand() Function

Syntax:

rand()
Nach dem Login kopieren

Example:

'.'Following are the different random values'; echo '
'; echo '
'. rand(); echo '
'; echo '
'. rand(); echo '
'; echo '
'. rand(); ?>
Nach dem Login kopieren

Output:

Zufallszahlengenerator in PHP

2. rand() Function within a Given Range

This function provides the range to the rand() function.

Syntax:

rand(min, max);
Nach dem Login kopieren

where min is the optional minimum value and denotes the lowest number value and max is the optional maximum value and denotes the highest numerical value.

Also, min has a default value of zero and max has a default value of getrandmax() function value. The return type of the function is always an integer.

Example:

'; echo '
Range : 1 to 100 ----> '. rand(1,100); echo '
'; echo '
Range 5 to 25 ---->'. rand(5, 25); echo '
'; echo '
Range 10000 to 50000 --->'. rand(10000, 50000); ?>
Nach dem Login kopieren

Output:

Zufallszahlengenerator in PHP

3. mt_rand() Function

Syntax:

int mt_rand(min, max)
Nach dem Login kopieren

where min is optional value and denotes the lowest number and max is optional value and denotes the highest number. The default value of min is 0 and the default value of max is the given highest value. The return type is an integer.

Example:

'; echo '
Range : 1 to 100 ----> '. mt_rand(1,100); echo '
'; echo '
Range 5 to 25 ---->'. mt_rand(5, 25); echo '
'; echo '
Range 9 to 19 --->'. mt_rand(9, 19); ?>
Nach dem Login kopieren

Output:

Zufallszahlengenerator in PHP

4. getrandmax() Function

Syntax:

mt_getrandmax();
Nach dem Login kopieren
Nach dem Login kopieren

This function returns an integer value

Example:

'; echo(getrandmax()); echo '
'; ?>
Nach dem Login kopieren

Output:

Zufallszahlengenerator in PHP

5. mt_getrandommax() Function

Syntax:

mt_getrandmax();
Nach dem Login kopieren
Nach dem Login kopieren

This function returns an integer value.

Example:

'; echo(mt_getrandmax()); ?>
Nach dem Login kopieren

Output:

Zufallszahlengenerator in PHP

6. srand() Function

Syntax:

srand(seed);
Nach dem Login kopieren

Where the seed is an optional value, and this function does not return anything.

Example:

'. srand(3); echo(rand(1, 5)); echo '
'; echo 'example using srand'; echo '
'. srand(2); echo(rand(1, 5)); ?>
Nach dem Login kopieren

Output:

Zufallszahlengenerator in PHP

7. mt_srand() Function

Example:

'; mt_srand(5); echo mt_rand(1,5); ?>
Nach dem Login kopieren

Output:

Zufallszahlengenerator in PHP

Generation Integers

In the following example we have used rand(),rand(min,max) and mt_rand().

Code:

 Any random number ---->'. rand(); echo '
Any random number ---->'. rand(); echo '
'; // random number with range echo 'Following are the different random values within a range '; echo '
Any random number within the range from 0 to 9----> '. rand(0,9); echo '
Any random number within the range from 1000 to 9999 ---->'. rand(1000,9999); echo '
'; // random number with range echo 'Following are the different random values using mt_rand() '; echo '
Using mt_rand()---->'. mt_rand(1000,9999); echo '
Using mt_rand()---->'. mt_rand(100,999); ?>
Nach dem Login kopieren

Output:

Zufallszahlengenerator in PHP

Generation Floating-Point Numbers

Floating-point numbers represent a number with decimals that are of the type float. Examples – 10.0, 8.12, 6.23e-5, 2.345, 2.98e+10 and more.

Code:

'; echo "
".fun(1, 10, 2); ?>
Nach dem Login kopieren

Output:

Zufallszahlengenerator in PHP

Conclusion

In this article, we learned about various functions used to generate a random number in PHP. These functions are explained with sample examples. Hope this article is found useful to anyone who wants to learn a random number generator in PHP.

Das obige ist der detaillierte Inhalt vonZufallszahlengenerator in PHP. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Verwandte Etiketten:
php
Quelle:php
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!