HH\Lib\SecureRandom\int
Returns a cryptographically secure random integer in the range from $min to
$max, inclusive
namespace HH\Lib\SecureRandom;
function int(
int $min = \PHP_INT_MIN,
int $max = \PHP_INT_MAX,
): int;
For pseudorandom integers, see PseudoRandom\int.
Parameters
int $min = \PHP_INT_MINint $max = \PHP_INT_MAX
Returns
int