This site works best with JavaScript enabled!

Description: Random Generator - Random Number

Random Generator Number

In this article the algorithm of the generator "Random Number" is described. The random generator generates an arbitrary random number. If you have more options and you just can not decide, this page will definitely help you.


What is randomness?

Randomness is an event whose state cannot be clearly predicted causally. This means that the result of a random generator may not be predictable or computable. This, however, contradicts the laws of each computer. In other words, a computer can not produce absolutely random numbers without additional peripherals. In this case we call it pseudo-random numbers. In general, you can philosophize about at which point you can actually speak about randomness in practise.

How are the random numbers generated?

Theoretically, several different methods are used in this generator to generate pseudo-random values. For the actual random number, a PHP function for cryptographically secure pseudo random numbers is used.

Random generators for binary string

How these random generators work, is explained here in detail.

Random generator for random number

The previous random number generators produce relatively good random numbers, which, however, can further be improved. The random answer is therefore always generated on server-side with the PHP function random_int(), which generates cryptographically secure pseudo-random numbers:

1
$random_anwser = random_int(NUMBER_MIN, NUMBER_MAX);
TO THE RANDOM GENERATOR
Share this page
Posted on 14.12.2016 | Last modified on 07.04.2021