HH\Lib\PseudoRandom\int

Meta Engineer?

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