HH\Lib\SecureRandom\int

Requires the Hack Standard Library to be installed.
Facebook Engineer?

This function is available as SecureRandom\int() in Facebook's www repository.

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_MIN
  • int $max = \PHP_INT_MAX

Returns

  • int