HH\Lib\PseudoRandom\int
Requires the Hack Standard Library to be installed.
Facebook Engineer?
This function is available as PseudoRandom\int()
in Facebook's www repository.
Returns a pseudorandom integer in the range from $min
to $max
, inclusive
namespace HH\Lib\PseudoRandom;
function int(
int $min = \PHP_INT_MIN,
int $max = \PHP_INT_MAX,
): int;
This is NOT suitable for cryptographic uses.
For secure random integers, see SecureRandom\int
.
Parameters
int $min = \PHP_INT_MIN
int $max = \PHP_INT_MAX
Returns
int