HH\Lib\SecureRandom\string

Meta Engineer?

This is available as SecureRandom\string in the www repository.

Returns a securely generated random string of length $length

namespace HH\Lib\SecureRandom;

function string(
  int $length,
  ?string $alphabet = NULL,
): string;

The string is composed of characters from $alphabet if $alphabet is specified.

For pseudorandom strings, see PseudoRandom\string.

Parameters

  • int $length
  • ?string $alphabet = NULL

Returns

  • string