(PHP 7)
random_int — Generates cryptographically secure pseudo-random integers
$min
, int $max
)Generates cryptographic random integers that are suitable for use where unbiased results are critical, such as when shuffling a deck of cards for a poker game.
La source des données aléatoires utilisée pour cette fonction est :
Note: Bien que cette fonction ait été ajoutée en PHP 7.0, une » implementation en espace utilisateur est disponible pour PHP 5.2 jusqu'à 5.6, inclus.
min
The lowest value to be returned, which must be
PHP_INT_MIN
or higher.
max
The highest value to be returned, which must be less than or equal to
PHP_INT_MAX
.
Returns a cryptographically secure random integer in the range
min
to max
, inclusive.
Exemple #1 random_int() example
<?php
var_dump(random_int(100, 999));
var_dump(random_int(-1000, 0));
?>
L'exemple ci-dessus va afficher quelque chose de similaire à :
int(248) int(-898)