HH\Lib\SecureRandom\int

Meta Engineer?

This is available as SecureRandom\int in the 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